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.

TypeAnnoOnInstanceOf.java 237B

1234567891011
  1. public class TypeAnnoOnInstanceOf {
  2. public void m() {
  3. Object o = "abc";
  4. if (o instanceof @Anno(1) String) {
  5. String s = (String) o;
  6. }
  7. if (o instanceof @Anno(1) Integer) {
  8. Integer s = (Integer) o;
  9. }
  10. }
  11. }