I would be interested to see if anyone else has encountered this error. 
    
    
    proc p(a : int) =
      echo a
    
    proc printVar*[T:int|float|string](a : T) =
      bind p
      p(a)
    
    printVar(5)
    
    
    Run

Run this little bit of code and if it spits back 
    
    
    Error: invalid expression: bind p
    
    
    Run

then we have the same bug.

Reply via email to