| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Eugene Pasynkov |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build | |
| Build |
812
|
RSRP-70649 |
error CS1929: Instance argument: cannot convert from 'int[]' to 'int' |
|
|
static class P
{
static void Foo<T>(this T x)
{
int[] y = null;
checked(y.Foo<int>)(); // error CS1929: Instance argument: cannot convert from 'int[]' to 'int'
}
}