aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorEnrico Tassi2016-09-29 10:46:53 +0200
committerEnrico Tassi2016-09-29 10:47:00 +0200
commita6832ccfacd9c105b23a9a77dadc3202f7af26fc (patch)
tree0e425553775feca6d35ebe1e6466477008d542a3 /test-suite
parente1df1b77f8c72636b6e347f41f6f38976c86e909 (diff)
Argument : assert does fail if no arg is given (fix #4864)
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/Arguments.v2
-rw-r--r--test-suite/success/simpl_tuning.v2
2 files changed, 2 insertions, 2 deletions
diff --git a/test-suite/output/Arguments.v b/test-suite/output/Arguments.v
index 05eeaac631..bd9240476f 100644
--- a/test-suite/output/Arguments.v
+++ b/test-suite/output/Arguments.v
@@ -17,7 +17,7 @@ Definition fcomp A B C f (g : A -> B) (x : A) : C := f (g x).
Arguments fcomp {_ _ _}%type_scope f g x /.
About fcomp.
Definition volatile := fun x : nat => x.
-Arguments volatile /.
+Arguments volatile / _.
About volatile.
Set Implicit Arguments.
Section S1.
diff --git a/test-suite/success/simpl_tuning.v b/test-suite/success/simpl_tuning.v
index d4191b939b..2728672f30 100644
--- a/test-suite/success/simpl_tuning.v
+++ b/test-suite/success/simpl_tuning.v
@@ -106,7 +106,7 @@ match goal with |- (f (g x1), h x2) = (f (g x1), h x2) => idtac end.
Abort.
Definition volatile := fun x : nat => x.
-Arguments volatile /.
+Arguments volatile / _.
Lemma foo : volatile = volatile.
simpl.