It's not a limitation.. the inference flows from right side to left side.

So instead of:
    
    
    let s: seq[int] = newSeq(10)
    
    
    Run

Do:
    
    
    let s = newSeq[int](10)
    
    
    Run

That's even more concise :) 

Reply via email to