[threadpool] Pass callback at initialization (#4546)
[mono.git] / mcs / errors / cs0075.cs
index bd3901b9b6f47a94e911c4581fda40d1cd6abb4e..367cfc7d579693d1bbbfde6238d3cdc87e27ce31 100644 (file)
@@ -1,4 +1,4 @@
-// cs0075.cs: To cast a negative value, you must enclose the value in parentheses
+// CS0075: To cast a negative value, you must enclose the value in parentheses
 // Line: 20
 class X
 {
@@ -17,7 +17,7 @@ class X
        public static void Main ()
        {
                int a = 4, b = 5;
-               X x = (X) -a;
+X x = (X) -a;
                System.Console.WriteLine (x.i);
        }
 }