aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs170
diff options
context:
space:
mode:
authorAndy Clement <aclement@vmware.com>2012-02-29 14:59:00 -0800
committerAndy Clement <aclement@vmware.com>2012-02-29 14:59:00 -0800
commit0cf0cb2dfb690891fe5eb7f4219e383ed666a0fc (patch)
treeda488b31e7b5bd0a0525fceb88c2df7b30fcd466 /tests/bugs170
parentb5835864bd821f0069797118cac017e39e893118 (diff)
downloadaspectj-0cf0cb2dfb690891fe5eb7f4219e383ed666a0fc.tar.gz
aspectj-0cf0cb2dfb690891fe5eb7f4219e383ed666a0fc.zip
support -Xset:makeTjpFieldsTransient=truetransientTjp
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);}
+}