tpush.nim 159 B

12345678910111213141516
  1. # test the new pragmas
  2. {.push warnings: off, hints: off.}
  3. proc noWarning() =
  4. var
  5. x: int
  6. echo(x)
  7. {.pop.}
  8. proc WarnMe() =
  9. var
  10. x: int
  11. echo(x)