discard """ errormsg: "type mismatch: got <type float, string>" line: 10 """ proc foo(T: typedesc; some: T) = echo($some) foo int, 4 foo float, "bad"