Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0407-4.cs
1 // CS0407: A method or delegate `TestDelegateA MainClass.Method(bool)' return type does not match delegate `int TestDelegateA(bool)' return type
2 // Line: 12
3
4 delegate int TestDelegateA (bool b);
5
6 public class MainClass
7 {
8         static TestDelegateA Method (bool b)
9         {
10                 return Method;
11         }
12 }
13