lean2/tests/lean/run/t5.lean
2014-08-07 16:59:08 -07:00

19 lines
No EOL
324 B
Text

variable N : Type.{1}
namespace foo
variable N : Type.{2}
namespace tst
variable N : Type.{3}
print raw N
end tst
end foo
print raw N
namespace foo
print raw N
namespace tst
print raw N N -> N
section
variable N : Type.{4} -- Shadow previous ones.
print raw N
end
end tst
end foo