Merge pull request #3545 from ntherning/throw-AbandonedMutexException-on-unix
[mono.git] / mcs / errors / cs3002-3.cs
index 1055c66ae839b9c08bee56d2b5e903d7d823a0cb..7e6c80fb2a62b5f014c7656190098cc2bc5de6b9 100644 (file)
@@ -1,9 +1,10 @@
-// cs3002.cs: Return type of 'CLSClass.MyDelegate' is not CLS-compliant
-// Line: 8
+// CS3002: Return type of `CLSClass.MyDelegate' is not CLS-compliant
+// Line: 9
+// Compiler options: -warnaserror -warn:1
 
 using System;
 [assembly:CLSCompliant(true)]
 
 public class CLSClass {
         public delegate uint MyDelegate();
-}
\ No newline at end of file
+}