lean2/tests/lean/run/opaque_hint_bug.lean
2014-10-09 07:13:06 -07:00

13 lines
230 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
reducible concat
end