diff options
Diffstat (limited to 'tests/bugs162/pr194429/A.java')
-rw-r--r-- | tests/bugs162/pr194429/A.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bugs162/pr194429/A.java b/tests/bugs162/pr194429/A.java new file mode 100644 index 000000000..c6a0841f8 --- /dev/null +++ b/tests/bugs162/pr194429/A.java @@ -0,0 +1,18 @@ +import java.util.*; + +public class A { + public void foo(Set s) { + } + public void goo(Map s) { + } +} + +aspect X { + + pointcut p(Set s): execution(* *(..)) && args(s); + + before(Map m): p(m) { + } + +} + |