2 using System
.Linq
.Expressions
;
8 public MyType (int value)
12 public static MyType
operator - (MyType a
)
14 return new MyType (-a
.value);
20 public static int Main ()
26 float? f
= float.MinValue
;
28 int? i
= int.MinValue
;
32 } catch (OverflowException
) { }