Function pointer types nested as type parameters do not encode dynamic correctly #44160
Open
Description
opened on May 11, 2020
Example:
unsafe class C<T, U>
{
C<delegate*<object>[], dynamic> field;
}
This is not encoded correctly, and on decode the attribute data is thrown out and we treat the field as C<delegate*<object>[], object>
.
Activity