aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features167/overweaving/messy/A.aj
blob: 961f489c1d7e42b4ed279b5d68677230a00bcaae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.andy;

@interface Anno {}

aspect A {
  declare @type: com.andy.C: @Anno;

  int C.i = 5;

  public void C.m() {}

  before(): execution(* C.main(..)) {
    System.out.println("AspectA>>"+thisJoinPointStaticPart);
  }

}