tnocontains.nim 238 B

123456789101112
  1. discard """
  2. errormsg: "type mismatch: got <string, string>"
  3. file: "tnocontains.nim"
  4. line: 10
  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