diff options
author | acolyer <acolyer> | 2005-09-02 10:40:19 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-09-02 10:40:19 +0000 |
commit | 047173e8683e4ab9004ae2151a8abad886d1b84b (patch) | |
tree | 7c70cd87214752972d5159ec43e52d4b703345d5 /tests/harness/XLintcflow.java | |
parent | ad753aa80558748ab918988809ba6f58b8c26419 (diff) | |
download | aspectj-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.java | 6 |
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(* *(..))) { + } +} |