Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs3005-21.cs
1 // CS3005: Identifier `CLSClass.NameAbC' differing only in case is not CLS-compliant
2 // Line: 12
3 // Compiler options: -warnaserror
4
5 using System;
6 [assembly:CLSCompliant (true)]
7
8 public class CLSClass {
9         [CLSCompliant (false)]
10         public int NameABC;
11             
12         public int NameAbc;
13         public int NameAbC;
14 }