lean2/tests/lean/run/section2.lean
2015-11-20 16:46:10 -08:00

15 lines
203 B
Text

import data.nat
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