summaryrefslogtreecommitdiff
path: root/server/test/definition/table.lua
blob: 4f5d90951a72059d6c9df82e1dc1e0b50f76b68f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
TEST [[
local t
t.<!x!> = 1
t.<?x?> = 1
]]

TEST [[
t.<!x!> = 1
t.<?x?> = 1
]]

TEST [[
local <!t!>
t.x = 1
<?t?>.x = 1
]]

TEST [[
t.<!x!> = 1
t.<?x?>.y = 1
]]

TEST [[
local t
t.<!x!> = 1
t.<?x?>()
]]