2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3014.cs
blobf9ffe61b8271590d3427db18b7e97ab776efd2f7
1 // CS3014: `I.Valid(bool)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
2 // Line: 9
3 // Compiler options: -warnaserror -warn:1
5 using System;
7 public interface I {
8 [CLSCompliant (true)]
9 void Valid (bool arg);