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

14 lines
161 B
Text

import data.nat
constants a b : nat
namespace boo
export nat (rec add)
check a + b
check nat.add
check add
end boo
open boo
check a + b
check nat.rec