Files
Nim/tests/tpush.nim
2010-02-14 00:29:35 +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)