14 lines
95 B
Lua

local M = {}
local a = {
b = 'test',
}
local c = a
c.b = 'notest'
print(a.b)
return M