summaryrefslogtreecommitdiffstats
path: root/tests/base/test135/JoinPointFields.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/base/test135/JoinPointFields.java')
-rw-r--r--tests/base/test135/JoinPointFields.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/base/test135/JoinPointFields.java b/tests/base/test135/JoinPointFields.java
new file mode 100644
index 000000000..dd83e7969
--- /dev/null
+++ b/tests/base/test135/JoinPointFields.java
@@ -0,0 +1,7 @@
+package test135;
+
+public aspect JoinPointFields extends test135.pack.JoinPointFields issingleton() { //of eachJVM() {
+ protected pointcut onTypes(): target(*);
+
+ private int x = protectedField;
+}