diff options
Diffstat (limited to 'tests/bugs183/436653/XB.java')
-rw-r--r-- | tests/bugs183/436653/XB.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs183/436653/XB.java b/tests/bugs183/436653/XB.java new file mode 100644 index 000000000..4bcf903ca --- /dev/null +++ b/tests/bugs183/436653/XB.java @@ -0,0 +1,6 @@ +import org.aspectj.lang.annotation.*; + +aspect XB { + before(): execution(* B.*(..)) {} +} + |