2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0428.cs
blob5ed8eccfec97bbb06234216facf1d48669c58e0e
1 // CS0428: Cannot convert method group `a' to non-delegate type `int'. Consider using parentheses to invoke the method
2 // Line: 12
4 class X {
5 int a (int a)
7 return 0;
10 void b ()
12 int x = a;