Files
Nim/tests/compile/tpush.nim
2011-11-19 15:45:51 +01:00

16 lines
174 B
Nim
Executable File

# test the new pragmas
{.push warnings: off, hints: off.}
proc noWarning() =
var
x: int
echo(x)
{.pop.}
proc WarnMe() =
var
x: int
echo(x)