a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
287 B
C#
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 () {}
|
|
}
|