source:
trunk/gcc/libjava/testsuite/libjava.compile/zeroexp.java
Last change on this file was 1389, checked in by , 21 years ago | |
---|---|
|
|
File size: 213 bytes |
Line | |
---|---|
1 | public 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.