When compiling this project https://github.com/Darckfast/workers-go/tree/main/_apps/_worker to wasm with go@1.23 and tinygo@0.41.1 it gives out the following error
# net/http
../../../../.cache/tinygo/goroot-.../src/net/http/fs.go:865:27: undefined: strings.FieldsFuncSeq
../../../../.cache/tinygo/goroot-.../src/net/http/fs.go:1025:26: undefined: strings.SplitSeq
Finished in 664.7ms
Upon close inspection, strings.FieldsFuncSeq and strings.SplitSeq functions were only introduced on Go 1.24 https://go.dev/doc/go1.24#stringspkgstrings
I'm opening this issue because the Go compatibility matrix shows tinygo 0.41.0+ as compatible with Go 1.23
It works fine when compiling with go@1.24 and tinygo@0.41.1 + this fix: #5351
When compiling this project https://github.com/Darckfast/workers-go/tree/main/_apps/_worker to wasm with
go@1.23andtinygo@0.41.1it gives out the following errorUpon close inspection,
strings.FieldsFuncSeqandstrings.SplitSeqfunctions were only introduced on Go 1.24 https://go.dev/doc/go1.24#stringspkgstringsI'm opening this issue because the Go compatibility matrix shows tinygo 0.41.0+ as compatible with Go 1.23
It works fine when compiling with
go@1.24andtinygo@0.41.1+ this fix: #5351