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

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

using System;
[assembly:CLSCompliant (true)]

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