lean4-htt/tests/lean/run/676.lean
2016-06-10 18:29:41 -07:00

13 lines
190 B
Text

exit
import data.nat
open nat
inductive foo : Prop :=
mk : ∀ {a : nat}, a > 0 → foo
example (b : nat) (h : b > 1) : foo :=
begin
fconstructor,
exact b,
exact lt_of_succ_lt h
end