org.aspectj/tests/new/ParsingFloatCE.java

9 lines
229 B
Java
Raw Normal View History

2002-12-16 19:51:06 +01:00
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
}
}