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

cs0076.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b80471763ab7373af560c70e257a79ece2bd829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0076.cs: An item in an enumeration cannot have an identifier `value__'
// Line: 8

using System;

class ErrorCS0076 {
	enum Foo {
		value__ = 0
	}
	public static void Main () {
	}
}