[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs3005-16.cs
1 // CS3005: Identifier `CLSClass_B.uNIVERSAL' differing only in case is not CLS-compliant
2 // Line: 9
3 // Compiler options: -reference:CS3005-16-lib.dll -warnaserror
4
5
6 using System;
7 [assembly: CLSCompliantAttribute (true)]
8
9 public class CLSClass_B: CLSClass_A {
10         public const int uNIVERSAL = 3;
11 }