discard""" file: "tnot.nim" line: 14 errormsg: "type mismatch""""# BUG: following compiles, but should not:procnodeOfDegree(x:int):bool=result=falseprocmain=forjin0..2:foriin0..10:ifnotnodeOfDegree(1)>=0:#ERROR_MSG type mismatchecho"Yes"else:echo"No"main()