mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 20:01:22 -05:00
* libjava.compile/zeroexp.java: New file.
From-SVN: r55663
This commit is contained in:
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user