t12517.nim 184 B

12345678910111213141516171819202122
  1. # Test based on issue #12517
  2. discard """
  3. nimout: '''
  4. nimvm
  5. both
  6. '''
  7. output: '''
  8. both
  9. '''
  10. """
  11. proc test() =
  12. when nimvm:
  13. echo "nimvm"
  14. echo "both"
  15. static:
  16. test()
  17. test()