import "cmd/compile/internal/test/testdata/mysort"
mysort.go
func F()
func Sort[T LessConstraint[T]](x []T)
type LessConstraint[T any] interface { Less(T) bool }
type MyInt struct { Value int }
func (a *MyInt) Less(b *MyInt) bool