Files
Nim/tests/compile/tpush.nim
2013-03-16 23:53:07 +01:00

16 lines
174 B
Nim

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