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.

ExampleG.java 180B

12345678910
  1. interface I {
  2. interface J< T > {
  3. T getT();
  4. }
  5. }
  6. public aspect ExampleG {
  7. public T I.J< T >.intro() {
  8. return null;
  9. }
  10. }