Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-568.cs
1 // Compiler options: -warn:4 -warnaserror
2
3 // Test invalid CS0108 warning for enum member hiding
4
5 enum E
6 {
7         Format
8 }
9
10 class B
11 {
12         public static void Main ()
13         {
14         }
15 }