lean2/tests/lean/run/univ2.lean
Leonardo de Moura 6ca80b5000 feat(frontends/lean): add 'sorry'
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-07-31 18:35:57 -07:00

10 lines
248 B
Text

import standard
hypothesis I : Type
definition F (X : Type) : Type := (X → Prop) → Prop
hypothesis unfold : I → F I
hypothesis fold : F I → I
hypothesis iso1 : ∀x, fold (unfold x) = x
theorem iso2 : ∀x, fold (unfold x) = x
:= sorry