tnocontains.nim 238 B

123456789101112
  1. discard """
  2. file: "tnocontains.nim"
  3. line: 10
  4. errormsg: "type mismatch: got (string, string)"
  5. """
  6. # shouldn't compile since it doesn't do what you think it does without
  7. # importing strutils:
  8. let x = "abcdef".contains("abc")
  9. echo x