tnimoutfull.nim 211 B

123456789101112131415
  1. discard """
  2. nimout: '''
  3. msg1
  4. msg2
  5. '''
  6. action: compile
  7. nimoutFull: true
  8. """
  9. # should fail because `msg3` is not in nimout and `nimoutFill: true` was given
  10. static:
  11. echo "msg1"
  12. echo "msg2"
  13. echo "msg3"