PR target/18582
[official-gcc.git] / libjava / testsuite / libjava.compile / zeroexp.java
blobf14efbbc9a290e0b114743c40efdb08c692d93d4
1 public class zeroexp
3 public static void main (String[] argv)
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);