* roottypes.cs: Rename from tree.cs.
[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