lean4-htt/tests/lean/run/331.lean
2017-03-09 18:41:19 -08:00

21 lines
310 B
Text

namespace nat
inductive less (a : nat) : nat → Prop
| base : less (succ a)
| step : Π {b}, less b → less (succ b)
end nat
open nat
#check less.rec_on
namespace foo1
protected definition foo2.bar : nat := 10
end foo1
example : foo1.foo2.bar = 10 :=
rfl
open foo1
example : foo2.bar = 10 :=
rfl