merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / errors / cs0076.cs
1 // cs0076.cs: An item in an enumeration cannot have an identifier `value__'
2 // Line: 8
3
4 using System;
5
6 class ErrorCS0076 {
7         enum Foo {
8                 value__ = 0
9         }
10         public static void Main () {
11         }
12 }
13