lean4-htt/tests/lean/run/opaque_hint_bug.lean
2016-06-10 18:29:41 -07:00

13 lines
245 B
Text

inductive List (T : Type) : Type :=
| nil {} : List T
| cons : T → List T → List T
section
variable {T : Type}
definition concat (s t : List T) : List T
:= List.rec t (fun x l u, List.cons x u) s
attribute concat [reducible]
end