aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.0/libjava/testsuite/libjava.lang/pr6388.java
blob: 175e1d213e2ed7d6a9ec57f324f3ad865b131c86 (plain)
1
2
3
4
5
6
7
8
9
10
public class pr6388
{
  public static void main (String[] args)
  {
    System.out.println (Integer.MIN_VALUE);
    System.out.println (0x80000000);
    System.out.println (Integer.MIN_VALUE == 0x80000000);
    System.out.println (0x80000000 == 0x80000000);
  }
}