[w32file] Remove dead code
[mono.git] / mcs / errors / cs0428.cs
1 // CS0428: Cannot convert method group `a' to non-delegate type `int'. Consider using parentheses to invoke the method
2 // Line: 12
3
4 class X {
5         int a (int a)
6         {
7                 return 0;
8         }
9
10         void b ()
11         {
12                 int x = a;
13         }
14 }