diff options
Diffstat (limited to 'spec/outputs/backcall.lua')
-rw-r--r-- | spec/outputs/backcall.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/outputs/backcall.lua b/spec/outputs/backcall.lua index 3a4c5e9..b065388 100644 --- a/spec/outputs/backcall.lua +++ b/spec/outputs/backcall.lua | |||
@@ -130,4 +130,20 @@ do | |||
130 | end) | 130 | end) |
131 | end | 131 | end |
132 | alert("hi") | 132 | alert("hi") |
133 | local x, y, z | ||
134 | do | ||
135 | x = (a) < -b | ||
136 | end | ||
137 | do | ||
138 | x, y, z = b(function(a) end) | ||
139 | end | ||
140 | do | ||
141 | x, y, z = b(function(a) end) | ||
142 | end | ||
143 | do | ||
144 | x = a <= b | ||
145 | end | ||
146 | do | ||
147 | x, y, z = b(function(self, a) end) | ||
148 | end | ||
133 | return nil | 149 | return nil |