[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / gtest-382.cs
1 using System;
2
3 class C
4 {
5         public static int Main ()
6         {
7                 int? i = 1;
8                 try {
9                         i = checked(int.MaxValue + i);
10                         return 1;
11                 } catch (OverflowException)     {
12                         return 0;
13                 }
14         }
15 }