diff options
Diffstat (limited to 'tests/features153/jdtlikehandleprovider/A10.aj')
-rw-r--r-- | tests/features153/jdtlikehandleprovider/A10.aj | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/features153/jdtlikehandleprovider/A10.aj b/tests/features153/jdtlikehandleprovider/A10.aj new file mode 100644 index 000000000..6b9259c55 --- /dev/null +++ b/tests/features153/jdtlikehandleprovider/A10.aj @@ -0,0 +1,22 @@ +package pkg; + +public aspect A10 { + + pointcut p() : call(public void C.m2()); + + before() : p() { + + } + +} + +class C { + + public void m1() { + new C().m2(); + } + + public void m2() { + + } +} |