2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs3012.cs
1 // cs3012.cs: You must specify the CLSCompliant attribute on the assembly, not the module, to enable CLS compliance checking
2 // Line: 7
3 // Compiler options: -warnaserror
4
5 using System;
6
7 [module: CLSCompliant(true)]
8
9 public class ClsMain {
10         public static void Main () {}
11 }