diff options
Diffstat (limited to 'tests/errors/New.java')
-rw-r--r-- | tests/errors/New.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/errors/New.java b/tests/errors/New.java new file mode 100644 index 000000000..a2c23a069 --- /dev/null +++ b/tests/errors/New.java @@ -0,0 +1,15 @@ +public class New { + public static void main(String[] args) { + new New().go(); + } + + void go() { + + } +} + +aspect A { + pointcut p(): call(* *.new(..)) && this(*); + before(): p() { + } +} |