diff options
Diffstat (limited to 'tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java')
-rw-r--r-- | tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java b/tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java new file mode 100644 index 000000000..12334f4b9 --- /dev/null +++ b/tests/bugs151/pr125475/TestEmptyPointcutAtAspect.java @@ -0,0 +1,6 @@ +@Aspect +public class TestEmptyPointcutAtAspect { + + @Pointcut("") + protected void scope () {} +} |