aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
Diffstat (limited to 'test-suite')
-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.