[msvc] Update csproj files (#4846)
[mono.git] / mcs / errors / cs3014.cs
index 0c63ae5cd196778c5182b1fb44e85a86c4cb4a06..f9ffe61b8271590d3427db18b7e97ab776efd2f7 100644 (file)
@@ -1,9 +1,10 @@
-// cs3014.cs: `I.Valid(bool)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
-// Line: 8
+// CS3014: `I.Valid(bool)' cannot be marked as CLS-compliant because the assembly is not marked as CLS-compliant
+// Line: 9
+// Compiler options: -warnaserror -warn:1
 
 using System;
 
 public interface I {
         [CLSCompliant (true)]
         void Valid (bool arg);
-}
\ No newline at end of file
+}