Commit 6ddbb7eb by Tom Tromey Committed by Tom Tromey

For PR java/6388:

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

From-SVN: r58475
parent 0d3911c9
2002-10-23 Tom Tromey <tromey@redhat.com>
For PR java/6388:
* libjava.lang/pr6388.java: New file.
* libjava.lang/pr6388.out: New file.
2002-10-15 Andrew Haley <aph@redhat.com>
* libjava.lang/EvaluationOrder.java (EvaluationOrder): New.
......
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);
}
}
-2147483648
-2147483648
true
true
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment