// cs0075.cs: Casting a negative value needs to have the value in parentheses. // Line: 9 using System; class ErrorCS0075 { static double x; public static void Main () { x = (double) -1; } }