-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/compile: internal compiler error: found illegal assignment on range with closure variables #47676
Comments
Thanks for the test case. @danscales, looks like something didn't get stenciled? It's trying to assign to a (unstenciled) parameter type. p.s. We just merged to main, so using dev.typeparams is no longer necessary. |
Standalone test case:
|
@stamblerre Thanks for the bug report, and @randall77 thanks for boiling it down to a simple test case. The stencilling/substitution code needs some extra logic to deal with the n.Defn pointers of local/closure variables, in particular range variables. The n.Defn pointer of a range variable points to its entire RANGE statement, so we are trying to substitute that before we've finished substituting all the local vars. I probably needed to do the substitution of the Defn nodes in a second pass. @stamblerre You can work around this by writing out the range statement as a standard i loop such as:
That works in the simple example that Keith gives. Let me know if that doesn't work for you, and I'll accelerate the fix for this issue. |
Potential duplicate: #47724. Test case: package main
import "strconv"
func main() {
ch := make(chan int, 10)
for i := 0; i < 10; i++ {
ch <- i
}
Map(ch, strconv.Itoa)
}
func Map[InputType, OutputType any](in <-chan InputType, f func(InputType) OutputType) <-chan OutputType {
out := make(chan OutputType, cap(in))
go func() {
defer close(out)
for v := range in {
out <- f(v)
}
}()
return out
} |
Yes, thanks for the further report. This is another example of the current bug (relating to stenciling of range loops). |
Change https://golang.org/cl/346290 mentions this issue: |
I am unable to run my program, which I think is correct and can be found in https://golang.org/cl/327276.
Repro steps:
Output:
I'm sorry that I don't have a more minimal repro case, but I do believe that this used to work (a few weeks ago).
The text was updated successfully, but these errors were encountered: