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.

First.java 158B

1234567891011
  1. interface II {}
  2. aspect X {
  3. public <XXX extends I1, YYY extends I2> YYY II.foo(XXX r, Class<YYY> ct) {
  4. return null;
  5. }
  6. }
  7. interface I1 {}
  8. interface I2 {}