2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3017.cs
blobdd701a4399ea40bd50ec3cd606caeb8aa7d9bb5a
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
5 using System;
7 [module: CLSCompliant (true)]
8 [assembly: CLSCompliant (false)]
10 class Test