4 public static int Main()
6 if (! Test1 ()) return 1;
7 if (! Test2 ()) return 2;
8 if (! Test3 ()) return 3;
18 // should generate OverflowException
21 byte sum
= (byte) (num1
- num2
);
25 } catch (OverflowException
) {
32 long l
= long.MinValue
;
34 // should generate OverflowException
41 } catch (OverflowException
) {
50 // should generate OverflowException
57 } catch (OverflowException
) {