what? also, your particular case can be fixed by making explicit overload 
without `foo` parameter.
    
    
    template h( foo: string, bar : untyped ) =
     echo foo
     bar
    
    template h(bar: untyped) =
      h "", bar
    
    
    Run

Reply via email to