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: 9622867128bf31c24b525b7f26cd6e18042d5ec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0654.cs: Method referenced without argument list.
// Line: 12
class X {
	int a (int a)
	{
		return 0;
	}

	void b ()
	{
		int x = a;
	}
}