summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0616.cs
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;
	}
}