tinvalidbindtypedesc.nim 163 B

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