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.

DesignB.java 186B

123456789101112
  1. class C {}
  2. interface I {}
  3. aspect X {
  4. <T extends Number> void C.m0(T t) {} // L7
  5. <Q extends I> void C.m1(Q q) {} // L9
  6. <R extends Number,I> void C.m2(R r) {} // L11
  7. }