* libjava.compile/zeroexp.java: New file.

From-SVN: r55663
This commit is contained in:
Tom Tromey 2002-07-23 03:15:02 +00:00 committed by Tom Tromey
parent f922660b69
commit 9cc37f69d2
2 changed files with 14 additions and 0 deletions

View file

@ -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.

View 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);
}
}