2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0023-11.cs
blob1a071806ab70a3c2c03312bcd95520ee733ce7c6
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;