Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs3001-2.cs
index f8e8218800c095cf48c8b34c111c7d90fa9b0529..90fd9bf4a6030f9f4c0e0d2e7fb566cf631abc44 100644 (file)
@@ -1,5 +1,6 @@
-// cs3001-2.cs: Argument type `ref ulong' is not CLS-compliant
-// Line: 9
+// CS3001: Argument type `ulong' is not CLS-compliant
+// Line: 10
+// Compiler options: -warnaserror -warn:1
 
 using System;
 [assembly:CLSCompliant (true)]
@@ -7,4 +8,4 @@ using System;
 public class CLSClass {
         public CLSClass (long a) {}
         public CLSClass (ref ulong a) {}
-}
\ No newline at end of file
+}