```Go package p func f[S []E, E any]() {} var _ = f[int] // ERROR S does not match []E ``` The error should be: `int does not match []E`.
The error should be:
int does not match []E.