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

cs3015-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8423681f9680122b411ad1960de8e230eccfced (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3015.cs: 'CLSAttribute' has no accessible constructors which use only CLS compliant types
// Line: 7

using System;
[assembly:CLSCompliant (true)]

public class CLSAttribute: Attribute {
    [CLSCompliant (false)]
    public CLSAttribute(string array) {
    }
}