Copied remotely
[mono.git] / mcs / errors / cs0149.cs
1 // cs0149.cs: Method 'MainClass.Delegate()' does not match delegate 'void TestDelegate()'\r
2 // Line: 8\r
3 \r
4 delegate void TestDelegate();\r
5 \r
6 public class MainClass {\r
7         public static void Main() {\r
8                 TestDelegate delegateInstance = new TestDelegate (0);\r
9        }\r
10 }\r