blob: 80f7ad42a99503c6634fe1670726afaab8c00bf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// In the current Beta compiler (as of August 2005)
// the following produces a warning ("a" and "A") as opposed
// to an error
//
using System;
[assembly:CLSCompliant(true)]
[CLSCompliant(true)]
public enum X {
A,
a
}
class xX {
public static void Main () {}
}
|