您最多选择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. }