summary refs log tree commit diff stats
path: root/tests/accept/compile/tpush.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/accept/compile/tpush.nim')
-rwxr-xr-xtests/accept/compile/tpush.nim15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/accept/compile/tpush.nim b/tests/accept/compile/tpush.nim
deleted file mode 100755
index 5fb411a79..000000000
--- a/tests/accept/compile/tpush.nim
+++ /dev/null
@@ -1,15 +0,0 @@
-# test the new pragmas

-

-{.push warnings: off, hints: off.}

-proc noWarning() =

-  var

-    x: int

-  echo(x)

-

-{.pop.}

-

-proc WarnMe() =

-  var

-    x: int

-  echo(x)

-