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.

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