8 lines
104 B
Text
8 lines
104 B
Text
--
|
|
|
|
variable p : Prop
|
|
definition foo (q : Prop) : q → true :=
|
|
begin
|
|
intro r,
|
|
apply true.intro
|
|
end
|