diff options
Diffstat (limited to 'tests/bugs1611/pr332388_2/MyAspect.java')
-rw-r--r-- | tests/bugs1611/pr332388_2/MyAspect.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs1611/pr332388_2/MyAspect.java b/tests/bugs1611/pr332388_2/MyAspect.java new file mode 100644 index 000000000..9252d17c1 --- /dev/null +++ b/tests/bugs1611/pr332388_2/MyAspect.java @@ -0,0 +1,9 @@ +import org.aspectj.lang.annotation.*; + +@Aspect +public class MyAspect { + @Before("call(* *.*(..)) && target(x)") + public void myAdvice(CharSequence x) { + System.out.println(); + } +} |