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: 7b236678a312d0f0d891bcf856330ba8d451a350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0076.cs: An item in an enumeration can't have an identifier 'value__'.
// Line: 8

using System;

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