[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs3005-4.cs
1 // CS3005: Identifier `CLSClass.constant' differing only in case is not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror
4
5 [assembly:System.CLSCompliant(true)]
6
7 public class CLSClass {
8         protected int Constant = 1;
9         protected const bool constant = false;
10 }