lean2/tests/lean/hott/366.hlean

8 lines
135 B
Text
Raw Normal View History

open eq
definition foo (A : Type) : Type := Π (a : A), a = a
definition thm : Π (A : Type), foo A :=
begin
intros,
apply idp
end