aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs163/pr253109/CodeFive.java
blob: a453022d91b52b7a398ca80c19263924b47c12fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import java.util.*;

public aspect CodeFive {

  void around(): execution(* m1(..)) && args(ArrayList) {}
  
}

class C {
	
	public void m1(List<Integer> li) {}
}