Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0654.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23cdaa8348db4c97a96ebe153dac31ecd897cc1a (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0654: Method `Test.foo()' is referenced without parentheses
// Line: 9
// Compiler options: -langversion:ISO-1

class Test {
	static int foo () { return 0; }
	static void Main ()
	{
		int i = foo;
	}
}