fix(tests): update tests because [unfold-c] attribute has been added to some definitions

This commit is contained in:
Floris van Doorn 2015-05-18 18:40:43 -04:00 committed by Leonardo de Moura
parent c430d1d5ba
commit 1c77122fd0
2 changed files with 2 additions and 2 deletions

View file

@ -5,7 +5,7 @@ f : A → B,
g : B → A,
ε : Π (b : B), f (g b) = b,
b b' : B
⊢ (ε b)⁻¹ ⬝ refl (f (g b)) ⬝ ε b = refl b
⊢ (ε b)⁻¹ ⬝ ε b = refl b
487.hlean:19:0: error: failed to add declaration 'foo' to environment, value has metavariables
remark: set 'formatter.hide_full_terms' to false to see the complete term
λ (A : Type) (B : Type) (f : …) (g : …) (ε : …) (b b' : B),

View file

@ -3,4 +3,4 @@ open nat
constant f : nat → nat
theorem tst1 (x y : nat) (H1 : (λ z, z + 0) x = y) : f x = f y :=
by rewrite [▸* at H1, ^add at H1, ^nat.rec_on at H1, ^of_num at H1, H1]
by rewrite [▸* at H1, ^add at H1, H1]