]> source.dussan.org Git - aspectj.git/commitdiff
262905: recursive non matching cflow pointcut: test and fix
authoraclement <aclement>
Fri, 30 Jan 2009 22:18:22 +0000 (22:18 +0000)
committeraclement <aclement>
Fri, 30 Jan 2009 22:18:22 +0000 (22:18 +0000)
tests/bugs164/pr262905/A.java [new file with mode: 0644]

diff --git a/tests/bugs164/pr262905/A.java b/tests/bugs164/pr262905/A.java
new file mode 100644 (file)
index 0000000..a1e2a61
--- /dev/null
@@ -0,0 +1,6 @@
+public aspect A {
+
+pointcut cf(): execution(* *(..)) && !cflow(cf());
+
+before(): cf() {}
+}