Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

InnerInterfaceTypesHelper.java 288B

12345678
  1. /** @testcase PR#685 subaspect method declaration on superaspect inner interface (types) */
  2. aspect ConcreteAspect extends AbstractAspect {
  3. /** bug iff method declaration on parent inner interface */
  4. public Object InnerInterface.getThis() {
  5. return new Object();
  6. }
  7. }