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: 70a80d0af79fa719194f590add1938d98ab08ad5 (plain)
1
2
3
4
5
6
7
// cs0681: Fields can not be abstract
// Line: 4
class X {
	abstract int name;

	static void Main () {}
}