Merge pull request #3997 from lateralusX/jlorenss/win-api-family-support-safearray
[mono.git] / mcs / errors / cs3001-2.cs
index 34dfd9336d1521ec3041e9bc7e04aef0890b0312..90fd9bf4a6030f9f4c0e0d2e7fb566cf631abc44 100644 (file)
@@ -1,5 +1,6 @@
-// cs3001.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
+}