On current tip (874b3132a84cf76da6a48978826c04c380a37a50, CL 247477) this valid code gets an incorrect compilation error. I believe this is due to CL 255217. CC @cuonglm @mdempsky ```Go package p func F(s string) bool { const m = 16 const n = 1e5 _ = make([]int, n) return len(s) < n*m } ```
On current tip (874b313, CL 247477) this valid code gets an incorrect compilation error.
I believe this is due to CL 255217. CC @cuonglm @mdempsky