選択できるのは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. }