選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BadStaticCast.java 185B

12345678
  1. // Incorrect static casts to primitively foldable arguments should not
  2. // crash the compiler.
  3. public class BadStaticCast {
  4. public static int foo() {
  5. return 3 + (int)true;
  6. }
  7. }