2002-07-24 Martin Baulig <martin@gnome.org>
[mono.git] / mcs / tests / test-150.cs
1 using System;
2 class T {
3         public static int Main() {
4                 if (Int32.MinValue == 0x80000000)
5                         return 1;
6                 return 0;
7         }
8 }