cleol
[mcs.git] / errors / cs0023-11.cs
blob0328fb9a59cd7f05c51f7c4d8571e63d04cb6cf1
1 // cs0023: The `-' operator cannot be applied to operand of type `A'
2 // Line: 16
5 class A
7 public static implicit operator ulong (A mask)
9 return 8;
13 class X
15 static A a = null;
16 static object o = -a;