blob: c41dbc5c71d12513a32231e77fdc8da47f7e7efb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS3005: Identifier `a' differing only in case is not CLS-compliant
// Line: 10
// Compiler options: -warnaserror
using System;
[assembly:CLSCompliant (true)]
public enum A {
}
public interface a {
}
|