Copied remotely
[mono.git] / mcs / errors / cs3005-13.cs
1 // cs3005.cs: Identifier 'CLSEnum.Label' differing only in case is not CLS-compliant
2 // Line: 9
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 public enum CLSEnum {
8         label,
9         Label
10 }