You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ParsingFloatCE.java 229B

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