Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs3005-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0bfa09fe273ee2fd3ad082e53492d242bd2ecb4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs3005.cs: Identifier 'CLSClass.value' differing only in case is not CLS-compliant
// Line: 15

[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;
}