discard""" errormsg: "ambiguous call" file: "tbind2.nim" line: 12"""# Test the new ``bind`` keyword for templatesprocp1(x:int8,y:int):int=returnx+yprocp1(x:int,y:int8):int=returnx-ytemplatetempBind(x,y):untyped=(bindp1(x,y))#ERROR_MSG ambiguous callechotempBind(1'i8,2'i8)