* 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
|
@ -1,3 +1,7 @@
|
|||
2002-07-22 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* libjava.compile/zeroexp.java: New file.
|
||||
|
||||
2002-07-18 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
|
||||
|
||||
* libjava.compile/compile.exp: Sort sources.
|
||||
|
|
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
Reference in a new issue