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