diff options
author | Andy Clement <aclement@pivotal.io> | 2018-09-29 07:47:57 -0700 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2018-09-29 07:47:57 -0700 |
commit | f6d9aaaf05eca3aaf06d3a769a83f302b0501dca (patch) | |
tree | f2f8b3c99f0bd2a77a570f1bf230c2d7aca23647 /tests/bugs192/535156/DemoApp2.java | |
parent | 8aeb774d210a42240f2d6d89dd89e947a084fd7f (diff) | |
download | aspectj-1_9_2_RC1.tar.gz aspectj-1_9_2_RC1.zip |
1.9.2.RC1 changesV1_9_2_RC1
Diffstat (limited to 'tests/bugs192/535156/DemoApp2.java')
-rw-r--r-- | tests/bugs192/535156/DemoApp2.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/bugs192/535156/DemoApp2.java b/tests/bugs192/535156/DemoApp2.java new file mode 100644 index 000000000..d48201be1 --- /dev/null +++ b/tests/bugs192/535156/DemoApp2.java @@ -0,0 +1,15 @@ +import org.aspectj.lang.annotation.*; + +public class DemoApp2 { + public static void main(String[]argv) {} + private void recurseInsteadOfWhile() { + say(); + } + + public void say() { } +} + +aspect X { + void around(): call(public void DemoApp2+.say(..)) { + } +} |