updating to the latest module.
[mono.git] / mcs / errors / cs3005-21.cs
1 // cs3005.cs: Identifier 'CLSClass.NameAbc' differing only in case is not CLS-compliant
2 // Line: 12
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 public class CLSClass {
8         [CLSCompliant (false)]
9         public int NameABC;
10             
11         public int NameAbc;
12         public int NameAbC;
13 }