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

13 lines
187 B
Text

section foo
variable A : Type
variable a : nat
end foo
namespace n1
section foo
variable A : Type
definition id (a : A) := a
variable a : nat
#check n1.id _ a
end foo
end n1