diff options
Diffstat (limited to 'tests/bugs162/pr239539/PrintAroundFoo.java')
-rw-r--r-- | tests/bugs162/pr239539/PrintAroundFoo.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/bugs162/pr239539/PrintAroundFoo.java b/tests/bugs162/pr239539/PrintAroundFoo.java new file mode 100644 index 000000000..54d382478 --- /dev/null +++ b/tests/bugs162/pr239539/PrintAroundFoo.java @@ -0,0 +1,9 @@ +package foo; + +import bar.PrintAround; + +public aspect PrintAroundFoo extends PrintAround { + + pointcut method() : call (void Main(String[])); + +} |