New test.
[mono.git] / mcs / errors / cs3017.cs
1 // cs3017.cs: You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly
2 // Line: 6
3
4 using System;
5
6 [module: CLSCompliant (true)]
7 [assembly: CLSCompliant (false)]
8
9 class Test
10 {
11 }