summaryrefslogtreecommitdiff
path: root/Tools/LuaMacro/tests/test-const.lua
blob: 9069568d7a150b562f189b0a978b610e2a255b9d (plain)
1
2
3
4
5
6
7
8
9
10
require_ 'const'
do
  const N,M = 10,20
  do
     const N = 5
     assert(N == 5)
  end
  assert(N == 10 and M == 20)
end
assert(N == nil and M == nil)