This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0428.cs
1 // cs0428.cs: Can not convert method group to type X, since type is not a delegate
2 // Line: 9
3 class X {
4         static void Method ()
5         {
6         }
7
8         static void Main ()
9         {
10                 object o = Method;
11         }
12 }