Spot the bug in the any constraint

from Constraints and type sets
Go 1.27 beginner 4 min 1 issue to find

Find the constraint error in this generated function.

Go
func Combine[T any](left, right T) T {
    return left + right
}
Open in playground
Report an error