2015-06-13 11:32:59 -07:00
|
|
|
|
definition test.foo.prf [irreducible] : ∀ (x : ℕ), 0 < succ (succ x) :=
|
2015-06-12 17:32:18 -07:00
|
|
|
|
λ (x : ℕ), lt.step (zero_lt_succ x)
|
2015-06-13 11:32:59 -07:00
|
|
|
|
definition test.bla : ℕ → ℕ :=
|
2015-06-12 17:32:18 -07:00
|
|
|
|
λ (a : ℕ), foo (succ (succ a)) (foo.prf a)
|
2015-06-13 11:32:59 -07:00
|
|
|
|
definition test.bla : ℕ → ℕ :=
|
2015-06-12 17:32:18 -07:00
|
|
|
|
λ (a : ℕ), test.foo (succ (succ a)) (test.foo.prf a)
|
2015-06-13 11:32:59 -07:00
|
|
|
|
definition test.foo.prf : ∀ (x : ℕ), 0 < succ (succ x) :=
|
2015-06-12 17:32:18 -07:00
|
|
|
|
λ (x : ℕ), lt.step (zero_lt_succ x)
|