| Priority |
Major |
| Type | Bug |
| State | Fixed |
| Assignee | Dmitry Lomov |
| Subsystem | PSI |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
326
|
RSRP-33884 |
Wrong report about ambiguous reference |
|
|
using System;
public delegate void F();
public class Stuff
{
private static void Main()
{
F f = (Foo); // Wrong report about ambiguous reference
}
private static void Foo()
{
}
private static void Foo<T>(T a, T b)
{
}
}