summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0681.cs
blob: 0c3a67481b4c2cab7cb9258d44177bfb769cf22b (plain)
1
2
3
4
5
6
7
8
// CS0681: The modifier 'abstract' is not valid on fields. Try using a property instead
// Line: 5

class X {
	abstract const int name = 3;

	static void Main () {}
}