aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs/serialVersionUID/PrivilegedAspect.aj
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/serialVersionUID/PrivilegedAspect.aj')
-rw-r--r--tests/bugs/serialVersionUID/PrivilegedAspect.aj13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/bugs/serialVersionUID/PrivilegedAspect.aj b/tests/bugs/serialVersionUID/PrivilegedAspect.aj
new file mode 100644
index 000000000..0a959f7e6
--- /dev/null
+++ b/tests/bugs/serialVersionUID/PrivilegedAspect.aj
@@ -0,0 +1,13 @@
+import java.io.InvalidClassException;
+import org.aspectj.testing.Tester;
+
+public privileged aspect PrivilegedAspect {
+
+ pointcut run (Test test) :
+ execution(public void run()) && this(test);
+
+ before (Test test) : run (test) {
+ System.out.println("? PrivilegedAspect.run() i=" + test.i);
+ }
+
+}