chore: fix calc test

This commit is contained in:
Leonardo de Moura 2021-08-25 06:59:46 -07:00
parent f9fd0b3de4
commit 42f1e16f44

View file

@ -4,7 +4,7 @@ variable (pf12 : t1 = t2) (pf23 : t2 = t3) (pf34 : t3 = t4)
theorem foo : t1 = t4 :=
calc
t1 = t2 := pf12
_ = t3 := id
_ = t3 := pf23
_ = t4 := pf34
variable (t5 : Nat)