[Mono.Unix] Fix crasher in StringToHeap (#5639)
[mono.git] / mcs / errors / cs3017.cs
1 // CS3017: You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly
2 // Line: 7
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6
7 [module: CLSCompliant (true)]
8 [assembly: CLSCompliant (false)]
9
10 class Test
11 {
12 }