proc xyz[T : int](x : T) = echo x
    
    xyz(1'i8)
    xyz(1'i32)
    
    
    Run

generates 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?

Reply via email to