Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

17 lines
287 B
C#

//
// 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 () {}
}