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

cs3012.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7633f5579409d63e1f2f475ca38cb18421e4ef27 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS3012: You must specify the CLSCompliant attribute on the assembly, not the module, to enable CLS compliance checking
// Line: 7
// Compiler options: -warnaserror

using System;

[module: CLSCompliant(true)]

public class ClsMain {
        public static void Main () {}
}