aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs170
diff options
context:
space:
mode:
authorAndy Clement <aclement@vmware.com>2012-03-02 14:31:45 -0800
committerAndy Clement <aclement@vmware.com>2012-03-02 14:31:45 -0800
commiteec87199cd0fbba7a16a63b7db61d3a0a0fd58c6 (patch)
tree50e06ee16ac626abab66eea22f6507fb9207ba4d /tests/bugs170
parentd4a8cc90482cb538a88f74a9aae99a323e547c84 (diff)
parent0cf0cb2dfb690891fe5eb7f4219e383ed666a0fc (diff)
downloadaspectj-eec87199cd0fbba7a16a63b7db61d3a0a0fd58c6.tar.gz
aspectj-eec87199cd0fbba7a16a63b7db61d3a0a0fd58c6.zip
373130: transient tjps
Diffstat (limited to 'tests/bugs170')
-rw-r--r--tests/bugs170/transientTjpFields/Code.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/bugs170/transientTjpFields/Code.java b/tests/bugs170/transientTjpFields/Code.java
new file mode 100644
index 000000000..8b4c44e17
--- /dev/null
+++ b/tests/bugs170/transientTjpFields/Code.java
@@ -0,0 +1,12 @@
+public class Code {
+ public void m() {
+ }
+
+ public void n() {
+ }
+
+}
+
+aspect X {
+ before(): execution(* Code.*(..)) {System.out.println(thisJoinPointStaticPart);}
+}