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

cs0616.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 709cf34a8ac48301f41bd10cbac09f4f63cf7ad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0616.cs: `FakeAttribute': is not an attribute class
// Line: 8

class FakeAttribute {
}

class T {
	[Fake]
	static int Main() {
		return 0;
	}
}