| Priority |
Show-stopper |
| Type | Bug |
| State | Can't Reproduce |
| Assignee | Dmitry Lomov |
| Subsystem | No subsystem |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
457
|
| Checked in Build |
500
|
RSRP-42876 |
Bogus error highlight for delegate creation expression |
|
delegate.PNG
(5 KB)
|
internal delegate void F<T>(T obj);
class Program
{
static F<string> Foo(F<object> x)
{
return new F<string>(x); // here
}
}