2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0076.cs
blob2b80471763ab7373af560c70e257a79ece2bd829
1 // cs0076.cs: An item in an enumeration cannot have an identifier `value__'
2 // Line: 8
4 using System;
6 class ErrorCS0076 {
7 enum Foo {
8 value__ = 0
10 public static void Main () {