[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs3005-3.cs
1 // CS3005: Identifier `CLSClass.value' differing only in case is not CLS-compliant
2 // Line: 15
3 // Compiler options: -warnaserror
4
5 [assembly:System.CLSCompliant(true)]
6
7 public class X {
8         public bool Value;
9 }
10
11 public class Y: X {
12         private readonly bool vAalue;
13 }
14     
15 public class CLSClass: Y {
16         protected internal bool value;
17 }