blob: 85106ad7d6321b307438f926c213297445cb2cbf (
plain)
1
2
3
4
5
6
7
8
|
public class ParsingFloatCE {
/** @testcase PR#642 PUREJAVA invalid floating-point constant */
public void notrun() {
float f = 10e-f; // expecting CE here
double d = 10ee10; // expecting CE here
}
}
|