lean4-htt/old_tests/tests/lean/run/section2.lean
2018-04-10 12:56:55 -07: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