Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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