Yes, i saw this change yesterday. This is actually a great addition. **Suggestion**: Make it work in preview too. And some animation indicating the code is compiling.
On the subject, there are several issues with this snippet: * It must import [typetraits module](https://nim-lang.org/docs/typetraits.html) . It was proposed in the past to include in system this proc and i think is a good idea. * Type must not be static. First and second proc compiled alright because generics are ignored until some code employs them (needs context to check whether it compiles or not) import typetraits proc test4*(name: static[cstring]) = echo(name) proc test4*(T: typedesc) = test4(T.name) test4(int)
