aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Jesus Gallego Arias2019-02-08 18:24:11 +0100
committerEmilio Jesus Gallego Arias2019-02-08 18:24:11 +0100
commit8276171d890360e9864d0e314f7ce4b12ba9040f (patch)
treea3bf90fff34f94e9d1b97ac94d2ade4a02a2447e
parent3b9d338c751acd6694038b30e0c40637449df86a (diff)
[test-suite] Improve test for async workers.
-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.