New test.
[mono.git] / mcs / errors / cs3005-13.cs
1 // cs3005-13.cs: Identifier `CLSEnum.Label' differing only in case is not CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror
4
5 //
6 // NOTE: This is only an error in MCS - in GMCS, it's just a warning.
7 //
8
9 using System;
10 [assembly:CLSCompliant (true)]
11
12 public enum CLSEnum {
13         label,
14         Label
15 }