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

cs0681.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c801e4d1c45047170264154dbe947ec9d03d1d8 (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 () {}
}