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

cs3016-1.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d60e0fe0f81f6f8141bac2b600491c65ea261143 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs3016.cs: Arrays as attribute arguments are not CLS-compliant
// Line: 7

using System;
[assembly: System.CLSCompliant (true)]

[CLSAttribute (new bool [] {true, false})]
public enum E {
}

public class CLSAttribute: System.Attribute {
        public CLSAttribute () {
        }
        
        public CLSAttribute(bool[] array) {
        }
}