Before: func(any, ...interface{}).
After: func(any, ...any)
They are no longer variadic, so you can't write print(x, y...).
(Recall that print(1) and print(interface{}(1)) behave
differently and that this is useful.)
Fixes bug 6560
R=gri
CC=golang-dev
https://golang.org/cl/14455054
|
||
|---|---|---|
| .. | ||
| boundmeth.go | ||
| coverage.go | ||
| fieldprom.go | ||
| ifaceconv.go | ||
| ifaceprom.go | ||
| initorder.go | ||
| methprom.go | ||
| mrvchain.go | ||