8 lines
116 B
Text
8 lines
116 B
Text
exit
|
|
import logic
|
|
|
|
example (a b c : Prop) (h : a) : true → true → a :=
|
|
begin
|
|
rewrite *true_imp,
|
|
exact h
|
|
end
|