source: trunk/gcc/libjava/testsuite/libjava.compile/zeroexp.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: 213 bytes
Line 
1public class zeroexp
2{
3 public static void main (String[] argv)
4 {
5 // gcj used to give an error about this literal.
6 float f = 0E-6F;
7 double d = 0E-9;
8 System.out.println ("" + f + " " + d);
9 }
10}
Note: See TracBrowser for help on using the repository browser.