twarning_off.nim 224 B

12345678910111213141516
  1. discard """
  2. nimout: '''
  3. compile start
  4. warn_module.nim(6, 6) Hint: 'test' is declared but not used [XDeclaredButNotUsed]
  5. compile end
  6. '''
  7. """
  8. static:
  9. echo "compile start"
  10. import warn_module
  11. static:
  12. echo "compile end"