diff options
Diffstat (limited to 'tests/bugs153/pr153380/case1/Runner.java')
-rw-r--r-- | tests/bugs153/pr153380/case1/Runner.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs153/pr153380/case1/Runner.java b/tests/bugs153/pr153380/case1/Runner.java new file mode 100644 index 000000000..5ca333533 --- /dev/null +++ b/tests/bugs153/pr153380/case1/Runner.java @@ -0,0 +1,9 @@ +public class Runner { + public static void main(String []argv) { + new BaseImpl().m(); + } + + static aspect A{ + before(): call(* *(..)) {} + } +} |