diff options
author | Matthieu Sozeau <matthieu.sozeau@inria.fr> | 2014-09-29 00:46:45 +0200 |
---|---|---|
committer | Matthieu Sozeau <matthieu.sozeau@inria.fr> | 2014-09-29 00:46:45 +0200 |
commit | dcf4af8b561f00414f50ef143706d15c8d7a35dd (patch) | |
tree | 566d81a2db911bb30ae7f4a15dcb9a1099d294be /test-suite/bugs | |
parent | 791a0c87624c394bd2c4dcb37a73bd04aafa5e98 (diff) |
Fix test-suite files
3566 gave a legitimate error, keyedrewrite was not setting keyed
unification on.
Diffstat (limited to 'test-suite/bugs')
-rw-r--r-- | test-suite/bugs/closed/3566.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-suite/bugs/closed/3566.v b/test-suite/bugs/closed/3566.v index d71727be5..b2aa8c3cd 100644 --- a/test-suite/bugs/closed/3566.v +++ b/test-suite/bugs/closed/3566.v @@ -19,4 +19,4 @@ Definition lift {T} : T -> Lift T := fun x => x. Goal forall x y : Type, x = y. intros. pose proof ((fun H0 : idmap _ => (@path_universe _ _ (@lift x) (H0 x) @ - (@path_universe _ _ (@lift y) (H0 y))^)))%path as H''. + (@path_universe _ _ (@lift x) (H0 x))^)))%path as H''. |