2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git] / mcs / errors / cs3017.cs
bloba0a0866891ad4d4817300bd82d50f3e37c152b78
1 // cs3017.cs: You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly
2 // Line: 6
4 using System;
6 [module: CLSCompliant (true)]
7 [assembly: CLSCompliant (false)]
9 class Test