aboutsummaryrefslogtreecommitdiffstats
path: root/tests/harness/XLintcflow.java
diff options
context:
space:
mode:
authoracolyer <acolyer>2005-09-02 10:40:19 +0000
committeracolyer <acolyer>2005-09-02 10:40:19 +0000
commit047173e8683e4ab9004ae2151a8abad886d1b84b (patch)
tree7c70cd87214752972d5159ec43e52d4b703345d5 /tests/harness/XLintcflow.java
parentad753aa80558748ab918988809ba6f58b8c26419 (diff)
downloadaspectj-047173e8683e4ab9004ae2151a8abad886d1b84b.tar.gz
aspectj-047173e8683e4ab9004ae2151a8abad886d1b84b.zip
tests and fix for pr99136 (dup adviceDidNotMatch warnings), plus extended testing for pr105479
Diffstat (limited to 'tests/harness/XLintcflow.java')
-rw-r--r--tests/harness/XLintcflow.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/harness/XLintcflow.java b/tests/harness/XLintcflow.java
new file mode 100644
index 000000000..e77445b6e
--- /dev/null
+++ b/tests/harness/XLintcflow.java
@@ -0,0 +1,6 @@
+// "Two Xlint warnings wth cflow?"
+
+aspect A {
+ before(): call(* *(..)) && cflow(execution(* *(..))) {
+ }
+}