aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160/pr223094/B.java
blob: da87f7e5d89261e4d8880ef26db9d841e948fef1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package p;

aspect B extends Y {
  declare parents: A* implements IFace;

}

abstract aspect Y {
  public void IFace.foo() {}
}

interface IFace {}