Index: src/pkg/go/printer/testdata/declarations.golden |
=================================================================== |
--- a/src/pkg/go/printer/testdata/declarations.golden |
+++ b/src/pkg/go/printer/testdata/declarations.golden |
@@ -617,24 +617,22 @@ |
// ellipsis parameters |
-func _(...) |
func _(...int) |
func _(...*int) |
func _(...[]int) |
func _(...struct{}) |
func _(bool, ...interface{}) |
func _(bool, ...func()) |
-func _(bool, ...func(...)) |
+func _(bool, ...func(...int)) |
func _(bool, ...map[string]int) |
func _(bool, ...chan int) |
-func _(b bool, x ...) |
func _(b bool, x ...int) |
func _(b bool, x ...*int) |
func _(b bool, x ...[]int) |
func _(b bool, x ...struct{}) |
func _(x ...interface{}) |
func _(x ...func()) |
-func _(x ...func(...)) |
+func _(x ...func(...int)) |
func _(x ...map[string]int) |
func _(x ...chan int) |