2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-382.cs
blob0ae654fa0b0e3ed931acdd8ed07b455ffc25b864
1 using System;
3 class C
5 public static int Main ()
7 int? i = 1;
8 try {
9 i = checked(int.MaxValue + i);
10 return 1;
11 } catch (OverflowException) {
12 return 0;