diff options
Diffstat (limited to 'tests/bugs152/pr126355/Pair.java')
-rw-r--r-- | tests/bugs152/pr126355/Pair.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/bugs152/pr126355/Pair.java b/tests/bugs152/pr126355/Pair.java new file mode 100644 index 000000000..385b403d7 --- /dev/null +++ b/tests/bugs152/pr126355/Pair.java @@ -0,0 +1,7 @@ +public class Pair<F, S> { + public Pair(F first, S second) { } +} + +aspect IdempotentCache pertarget(cached()) { + pointcut cached(): execution(public * *(..)) && within(Pair); +} |