source: trunk/gcc/libjava/testsuite/libjava.lang/pr6388.java

Last change on this file was 1389, checked in by bird, 21 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 264 bytes
Line 
1public class pr6388
2{
3 public static void main (String[] args)
4 {
5 System.out.println (Integer.MIN_VALUE);
6 System.out.println (0x80000000);
7 System.out.println (Integer.MIN_VALUE == 0x80000000);
8 System.out.println (0x80000000 == 0x80000000);
9 }
10}
Note: See TracBrowser for help on using the repository browser.