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

cs3007.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03c7b38259e2afc5ecf46b503828a36112a435cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs3007.cs: Overloaded method 'CLSClass.(bool[])' differing only by unnamed array types is not CLS-compliant
// Line: 11

using System;
[assembly: CLSCompliant(true)]

public class CLSClass {
    public CLSClass(int[,,][] i) {
    }

    public CLSClass(bool[] b) {
    }

    static void Main() {}
}