lean4-htt/old_tests/tests/lean/quot_bug.lean
2018-04-10 12:56:55 -07:00

9 lines
229 B
Text

open quot
variables {A : Type} {B : A → Type}
variable f : Π a : A, B a
#reduce λ x, quot.lift_on ⟦f⟧ (λf : (Πx : A, B x), f) _ x
example (x : A) : quot.lift_on ⟦f⟧ (λf : (Πx : A, B x), f) sorry x = f x :=
rfl