(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0075.cs
blob6deff0675d8a3807c6c134fb894acf455bbb18ae
1 // cs0075.cs: Casting a negative value needs to have the value in parentheses.
2 // Line: 20
3 class X
5 public readonly int i;
7 public X (int i)
9 this.i = i;
12 public static implicit operator X (int value)
14 return new X (value);
17 public static void Main ()
19 int a = 4, b = 5;
20 X x = (X) -a;
21 System.Console.WriteLine (x.i);