summaryrefslogtreecommitdiff
path: root/test-beta/definition/set.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test-beta/definition/set.lua')
-rw-r--r--test-beta/definition/set.lua40
1 files changed, 0 insertions, 40 deletions
diff --git a/test-beta/definition/set.lua b/test-beta/definition/set.lua
deleted file mode 100644
index f36be078..00000000
--- a/test-beta/definition/set.lua
+++ /dev/null
@@ -1,40 +0,0 @@
-TEST [[
-<!x!> = 1
-<?x?>()
-]]
-
-TEST [[
-do
- <!global!> = 1
-end
-<?global?>()
-]]
-
-TEST [[
-<!x!> = 1
-do
- local x = 1
-end
-<?x?>()
-]]
-
-TEST [[
-x = 1
-do
- local <!x!> = 1
- do
- <!x!> = 2
- end
- <?x?>()
-end
-]]
-
-TEST [[
-<!x!> = 1
-if y then
- <!x!> = 2
-else
- <!x!> = 3
-end
-print(<?x?>)
-]]