Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

25 lines
290 B
C#

// CS0035: Operator `-' is ambiguous on an operand of type `A'
// Line: 22
class A
{
public static implicit operator float(A x)
{
return 0;
}
public static implicit operator decimal(A x)
{
return 0;
}
}
class M
{
static void Main()
{
A a = new A ();
float f = -a;
}
}