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

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

using System;
[assembly:CLSCompliant (true)]

public class CLSAttribute: Attribute {
       private CLSAttribute(int arg) {
       }
}