aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Tassi2019-02-11 16:54:14 +0100
committerEnrico Tassi2019-02-11 16:54:14 +0100
commit22f240bd878647be381e9a60bc4944c3a743acc9 (patch)
tree6a2aa4bd54916257395d45f016c0083233fec25a
parent9352347ee0ea77e0095145afe8c4824a4d5ca32c (diff)
parent8276171d890360e9864d0e314f7ce4b12ba9040f (diff)
Merge PR #9531: [test-suite] Improve test for async workers.
Reviewed-by: gares
-rw-r--r--test-suite/stm/arg_filter_1.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/stm/arg_filter_1.v b/test-suite/stm/arg_filter_1.v
index 1cf66d6b43..ed87d67405 100644
--- a/test-suite/stm/arg_filter_1.v
+++ b/test-suite/stm/arg_filter_1.v
@@ -1,4 +1,4 @@
(* coq-prog-args: ("-async-proofs-tac-j" "1") *)
-Lemma foo : True.
-Proof. now auto. Qed.
+Lemma foo (A B : Prop) n : n + 0 = n /\ (A -> B -> A).
+Proof. split. par: now auto. Qed.