Skip to content

Commit 857f61d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 49616fa + cdfa245 commit 857f61d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/syntax.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
local char = ("").char
99
print(char == string.char and "yes" or "no")
1010
local pc, _ = pcall(function()
11-
return (0)[char]
11+
return (0).char
1212
end)
1313

1414
-- Checks for unparser bug
1515
print(pc == false and "yes" or "no")
1616
local ok = pcall(function(...)
1717
print("hello " .. ...)
1818
end)
19-
print(ok and "no" or "yes")
19+
print(ok and "no" or "yes")

0 commit comments

Comments
 (0)