diff options
Diffstat (limited to 'libjava/testsuite/libjava.compile/zeroexp.java')
-rw-r--r-- | libjava/testsuite/libjava.compile/zeroexp.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libjava/testsuite/libjava.compile/zeroexp.java b/libjava/testsuite/libjava.compile/zeroexp.java deleted file mode 100644 index f14efbb..0000000 --- a/libjava/testsuite/libjava.compile/zeroexp.java +++ /dev/null @@ -1,10 +0,0 @@ -public class zeroexp -{ - public static void main (String[] argv) - { - // gcj used to give an error about this literal. - float f = 0E-6F; - double d = 0E-9; - System.out.println ("" + f + " " + d); - } -} |