blob: fbfeb106e7c1698c46bfb25bf7aed42c3fc3c923 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// CS3005: Identifier `CLSClass.value' differing only in case is not CLS-compliant
// Line: 15
// Compiler options: -warnaserror
[assembly:System.CLSCompliant(true)]
public class X {
public bool Value;
}
public class Y: X {
private readonly bool vAalue;
}
public class CLSClass: Y {
protected internal bool value;
}
|