[msvc] Update csproj files
[mono.git] / mcs / errors / cs0075.cs
index 6deff0675d8a3807c6c134fb894acf455bbb18ae..367cfc7d579693d1bbbfde6238d3cdc87e27ce31 100644 (file)
@@ -1,4 +1,4 @@
-// cs0075.cs: Casting a negative value needs to have 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);
        }
 }