aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr147801/Advisor.aj
blob: ac09aafc6d4b7229fb15b114f1d576f79d2e7d1f (plain)
1
2
3
4
5
6
7
8
public aspect Advisor {

  before(): staticinitialization(*oo) {
    System.err.println("x");
  }

  declare parents: Foo implements java.io.Serializable;
}