lean4-htt/old_tests/tests/lean/run/1942.lean
2018-04-10 12:56:55 -07: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)