diff options
Diffstat (limited to 'tests/harness')
-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(* *(..))) { + } +} |