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: ecb7f28cda7fa9296495c4b28fc57345aca0b2d2 (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;
	}
}