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: b9f34d6654cdeadc26f538429cbff98d590dbbcc (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3012.cs: 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 () {}
}