3 class BasicValueTypesTest
5 static int trycatch (voi f
) {
10 catch (System
.OverflowException e
) {
11 System
.Console
.WriteLine (e
);
19 long x
= System
.Int64
.MinValue
;
26 byte x
= System
.Byte
.MaxValue
;
31 public static int Main () {
34 result
+= trycatch (foo1
);
35 result
+= trycatch (foo2
);