Merged changes in master libmonoruntime into PR.
[mono.git] / mcs / errors / cs0076.cs
1 // CS0076: 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