summaryrefslogtreecommitdiffstats
path: root/tests/harness/aspectpath/A.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/harness/aspectpath/A.java')
-rw-r--r--tests/harness/aspectpath/A.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/harness/aspectpath/A.java b/tests/harness/aspectpath/A.java
new file mode 100644
index 000000000..267b2679f
--- /dev/null
+++ b/tests/harness/aspectpath/A.java
@@ -0,0 +1,6 @@
+
+aspect A {
+ before() : execution(void main(String[])) {
+ System.setProperty("A.before", "true");
+ }
+} \ No newline at end of file