Open
Description
These two methods are new in Go 1.23 as part of the new iterators feature:
% cat main.go
package main
import "reflect"
func main() {
var v reflect.Value
_ = v.Seq
_ = v.Seq2
}
% go build -o main
% tinygo build -o main
# example.com/example
main.go:7:8: v.Seq undefined (type reflect.Value has no field or method Seq)
main.go:8:8: v.Seq2 undefined (type reflect.Value has no field or method Seq2)