summaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr126355/Pair.java
blob: 385b403d75a76645473218d0dde452cd19de1e43 (plain)
1
2
3
4
5
6
7
public class Pair<F, S> {
    public Pair(F first, S second) { }
}

aspect IdempotentCache pertarget(cached()) {
    pointcut cached(): execution(public * *(..)) && within(Pair);
}