<!-- Think about the title, twice. --> <!-- Summarize the Problem here, keep it simple. --> <!-- e.g. `echo` outputs the wrong string. --> ### Example ```nim import typetraits echo seq[int] echo seq[int].genericHead echo seq[int].stripGenericParams ``` ### Current Output `internal error: expr(nkType); unknown node kind` for both the call to `genericHead` and the call to `stripGenericParams`. ### Expected Output ``` seq[int] seq seq ```