tinvalidbindtypedesc.nim 159 B

123456789101112
  1. discard """
  2. line: 10
  3. errormsg: "type mismatch: got (type float, string)"
  4. """
  5. proc foo(T: typedesc; some: T) =
  6. echo($some)
  7. foo int, 4
  8. foo float, "bad"