Remove debugging code from generated code
[mono-project.git] / mcs / errors / cs0035.cs
blobb4c98dcef236a3bf7e5772c7dd8dee29130a88a7
1 // CS0035 : Operator `+' is ambiguous on operands of type `Y' and `X'
2 // Line: 22
4 class A
6 public static implicit operator float(A x)
8 return 0;
11 public static implicit operator decimal(A x)
13 return 0;
17 class M
19 static void Main()
21 A a = new A ();
22 int i = -a;