diff options
Diffstat (limited to 'tests/accept/compile/tpush.nim')
-rwxr-xr-x | tests/accept/compile/tpush.nim | 15 |
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) - |