simit icon indicating copy to clipboard operation
simit copied to clipboard

Error naming a tensor variable free

Open fredrikbk opened this issue 8 years ago • 0 comments

If a tensor variable is named free then the backend assert fails, presumably because there are internal functions named free. The following test fails:

func main(a : vector[2](int)) -> b : vector[2](int)
  free = a;
  b = free*2;
end

fredrikbk avatar Aug 26 '16 17:08 fredrikbk