Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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. }