* libjava.compile/zeroexp.java: New file.
From-SVN: r55663
This commit is contained in:
parent
f922660b69
commit
9cc37f69d2
2 changed files with 14 additions and 0 deletions
10
libjava/testsuite/libjava.compile/zeroexp.java
Normal file
10
libjava/testsuite/libjava.compile/zeroexp.java
Normal file
|
@ -0,0 +1,10 @@
|
|||
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);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue