proc xyz[T : int](x : T) = echo x
xyz(1'i8)
xyz(1'i32)
Rungenerates two distinct procedures for int8 and int32 in the c code. How does that happen if int is not a generic type, which would be treated as a type class according to the spec?
