aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs189/486612/Azpect.java
blob: e5a1ba3e55ac6a10793dcc24fc988a199eb8e8b7 (plain)
1
2
3
4
5
6
7
aspect Azpect {
 declare parents: B implements I;
 declare parents: D implements I;
  before(): staticinitialization(!Azpect){}
}

interface I {}