summaryrefslogtreecommitdiff
path: root/scratch/diag_test.lua
blob: 589b6c2f81bf493dce536c8f0a10dcb1bf729b89 (plain)
1
2
3
4
5
6
7
8
9
10
local y = function() end

local x = function()
  asdf
  print(y)
end

x()

y()