您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }