For PR java/6388:

* libjava.lang/pr6388.java: New file.
	* libjava.lang/pr6388.out: New file.

From-SVN: r58475
This commit is contained in:
Tom Tromey 2002-10-23 22:56:13 +00:00 committed by Tom Tromey
parent 0d3911c904
commit 6ddbb7ebba
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,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);
}
}