[threadpool] Pass callback at initialization (#4546)
[mono.git] / mcs / errors / cs0662.cs
index 810a31d71d8d08c0a6c595a342ee1593cb5a53ed..b33a9f7c2bfd3aab575678419e8df5d4b363af29 100644 (file)
@@ -1,9 +1,9 @@
-// cs0662.cs: 'C.Test(int, ref int)' cannot specify only Out attribute on a ref parameter. Use both In and Out attributes, or neither
+// CS0662: Cannot specify only `Out' attribute on a ref parameter. Use both `In' and `Out' attributes or neither
 // Line: 8
 
 using System.Runtime.InteropServices;
 
 class C
 {
-   void Test(int i1, [Out, In2] ref int i2) {}
+   void Test(int i1, [Out, Int] ref int i2) {}
 }