aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/using.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--spec/outputs/using.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/spec/outputs/using.lua b/spec/outputs/using.lua
new file mode 100644
index 0000000..6d0d888
--- /dev/null
+++ b/spec/outputs/using.lua
@@ -0,0 +1,23 @@
1local hello = "hello"
2local world = "world"
3local _
4_ = function()
5 local hello = 3223
6end
7_ = function(a)
8 local hello = 3223
9 a = 323
10end
11_ = function(a, b, c)
12 a, b, c = 1, 2, 3
13 local world = 12321
14end
15_ = function(a, e, f)
16 local b, c
17 a, b, c = 1, 2, 3
18 hello = 12321
19 local world = "yeah"
20end
21_ = function()
22 local hello = hello or 2
23end