Files
Nim/tests/tpush.nim
2009-09-15 23:22:22 +02: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)