* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[mono.git] / mcs / errors / cs0654.cs
1 // cs0654: Method `Test.foo()' is referenced without parentheses
2 // Line: 9
3 // Compiler options: -langversion:ISO-1
4
5 class Test {
6         static int foo () { return 0; }
7         static void Main ()
8         {
9                 int i = foo;
10         }
11 }