aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150
diff options
context:
space:
mode:
authoraclement <aclement>2005-10-18 15:40:35 +0000
committeraclement <aclement>2005-10-18 15:40:35 +0000
commitae612d9752200a3784de33ea6b79815e77aabaed (patch)
treec6aa9d8bee4321e19589608821515536fd02915c /tests/bugs150
parentec9a49e930404239f5e681c133454f429fcc1ca6 (diff)
downloadaspectj-ae612d9752200a3784de33ea6b79815e77aabaed.tar.gz
aspectj-ae612d9752200a3784de33ea6b79815e77aabaed.zip
tests and fix for pr112027
Diffstat (limited to 'tests/bugs150')
-rw-r--r--tests/bugs150/pr112027.aj4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/bugs150/pr112027.aj b/tests/bugs150/pr112027.aj
new file mode 100644
index 000000000..08b4eac1a
--- /dev/null
+++ b/tests/bugs150/pr112027.aj
@@ -0,0 +1,4 @@
+public aspect pr112027 {
+ pointcut pc() : this(pr112027);
+ before(pr112027 tis) : pc() && this(tis) { }
+}