8 lines
132 B
Text
8 lines
132 B
Text
import tools.tactic logic.prop
|
|
|
|
variable p : Prop
|
|
definition foo (q : Prop) : q → true :=
|
|
begin
|
|
intro r,
|
|
apply true.intro
|
|
end
|