| Priority |
Normal |
| Type | Bug |
| State | Fixed |
| Assignee | Eugene Pasynkov |
| Subsystem | Code Analysis |
| Affected versions |
No affected versions
|
| Fixed in |
3.0.2
|
| Fixed in build |
Next build |
| Build |
326
|
RSRP-33882 |
error CS0407: 'int Stuff.Foo()' has the wrong return type |
|
|
using System;
public delegate void F();
public class Stuff
{
private static void Main()
{
F f = new F((Foo)); // error CS0407: 'int Stuff.Foo()' has the wrong return type
}
private static int Foo()
{
throw new NotImplementedException();
}
}