summary refs log tree commit diff stats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/pragmas/treorderdeclared.nim12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/pragmas/treorderdeclared.nim b/tests/pragmas/treorderdeclared.nim
deleted file mode 100644
index 67403471b..000000000
--- a/tests/pragmas/treorderdeclared.nim
+++ /dev/null
@@ -1,12 +0,0 @@
-discard """
-output:'''false'''
-"""
-
-{.experimental: "codeReordering".}
-
-proc x() =
-  echo(declared(foo))
-
-var foo = 4
-
-x() # "false", the same as it would be with code reordering OFF