2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0654.cs
blob23cdaa8348db4c97a96ebe153dac31ecd897cc1a
1 // cs0654: Method `Test.foo()' is referenced without parentheses
2 // Line: 9
3 // Compiler options: -langversion:ISO-1
5 class Test {
6 static int foo () { return 0; }
7 static void Main ()
9 int i = foo;