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