| Priority |
Show-stopper |
| Type | Bug |
| State | Fixed |
| Assignee | Dmitry Lomov |
| Subsystem | PSI - Resolve |
| Affected versions |
No affected versions
|
| Fixed in |
2.0.1
|
| Fixed in build |
Next build |
| Fixed in build |
253
|
RSRP-25376 |
Bug in resolve |
|
|
class ServiceCreator<T> {}
interface I
{
void Publish<T>(T serviceInstance) where T : class;
void Publish<T>(ServiceCreator<T> serviceCreator) where T : class;
}
interface ISampleService {}
class C
{
public void Foo (I i)
{
i.Publish<ISampleService> (null);
}
}