| Priority |
Critical |
| Type | Bug |
| State | Fixed |
| Assignee | Eugene Pasynkov |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
4.1
|
| Fixed in build | |
| Build |
812
|
| Fixed in build |
919
|
RSRP-70642 |
Extension method is not resolved when invoked on a nullable type |
|
|
interface I { }
struct A : I { }
static class P
{
static void Foo(this I x)
{
A? y = null;
y.Foo();
}
}