8 lines
135 B
Text
8 lines
135 B
Text
|
open eq
|
||
|
definition foo (A : Type) : Type := Π (a : A), a = a
|
||
|
definition thm : Π (A : Type), foo A :=
|
||
|
begin
|
||
|
intros,
|
||
|
apply idp
|
||
|
end
|