blob: 69db97d8e05189a67f32e52f82f2b8c4fc7dec60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS0076: An item in an enumeration cannot have an identifier `value__'
// Line: 8
using System;
class ErrorCS0076 {
enum Foo {
value__ = 0
}
public static void Main () {
}
}
|