for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs3012.cs
blob7633f5579409d63e1f2f475ca38cb18421e4ef27
1 // CS3012: You must specify the CLSCompliant attribute on the assembly, not the module, to enable CLS compliance checking
2 // Line: 7
3 // Compiler options: -warnaserror
5 using System;
7 [module: CLSCompliant(true)]
9 public class ClsMain {
10 public static void Main () {}