summaryrefslogtreecommitdiffstats
path: root/tests/java5/generics/itds/binaryweaving/A1.aj
blob: c1a25632a48606c2ea88a020f4a00d741c317c69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import java.util.*;

aspect A1 {

  public List<String> BaseClass.list1;

  after(BaseClass c): execution(* run1(..)) && this(c) {
    List<String> myLs = new ArrayList<String>();
    c.list1 = myLs;
    c.count++;
  }

}