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.

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