[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-192.cs
1 //
2 // In the current Beta compiler (as of August 2005)
3 // the following produces a warning ("a" and "A") as opposed
4 // to an error
5 //
6 using System;
7 [assembly:CLSCompliant(true)]
8 [CLSCompliant(true)]
9 public enum X {
10        A,
11        a
12 }
13
14 class xX {
15        public static void Main () {}
16 }