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

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

using System;

[assembly: CLSCompliantAttribute (true)]

public class A
{
    [CLSCompliant (false)]
    public void Test () {}
        
    public void test () {}
}

public class B: A
{
    public void TEST () {} 
}