2003-07-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / errors / cs0075.cs
1 // cs0075.cs: Casting a negative value needs to have the value in parentheses.
2 // Line: 9
3
4 using System;
5
6 class ErrorCS0075 {
7         static double x;
8         public static void Main () {
9                 x = (double) -1;
10         }
11 }
12