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: 0d945a66208ef398ac974fa783f42bdf5b788d23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0616: `FakeAttribute': is not an attribute class
// Line: 8

class FakeAttribute {
}

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