mirror of git://gcc.gnu.org/git/gcc.git
* libjava.compile/zeroexp.java: New file.
From-SVN: r55663
This commit is contained in:
parent
f922660b69
commit
9cc37f69d2
|
@ -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.
|
||||
|
|
|
@ -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…
Reference in New Issue