lean4-htt/tests/lean/run/1942.lean
Leonardo de Moura 832d2358f1 test(tests/lean/run/1942): closes #1942
It seems the assertion violation has been fixed by recent changes.
2018-03-06 17:43:08 -08:00

9 lines
183 B
Text

open tactic
meta def c : tactic unit :=
do l ← local_context,
try_lst (l.map (λ h, cases h >> skip))
structure X (U : Type) :=
(f : U → U)
(w : ∀ u : U, f u = u . c)