Commit 71ed4eb7 authored by Robert Griesemer's avatar Robert Griesemer

fix build: adjustest a few tests that I missed before

R=r
CC=golang-dev
https://golang.org/cl/1762044
parent d87f7e23
...@@ -617,24 +617,22 @@ func _() { ...@@ -617,24 +617,22 @@ func _() {
// ellipsis parameters // ellipsis parameters
func _(...)
func _(...int) func _(...int)
func _(...*int) func _(...*int)
func _(...[]int) func _(...[]int)
func _(...struct{}) func _(...struct{})
func _(bool, ...interface{}) func _(bool, ...interface{})
func _(bool, ...func()) func _(bool, ...func())
func _(bool, ...func(...)) func _(bool, ...func(...int))
func _(bool, ...map[string]int) func _(bool, ...map[string]int)
func _(bool, ...chan 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 ...*int)
func _(b bool, x ...[]int) func _(b bool, x ...[]int)
func _(b bool, x ...struct{}) func _(b bool, x ...struct{})
func _(x ...interface{}) func _(x ...interface{})
func _(x ...func()) func _(x ...func())
func _(x ...func(...)) func _(x ...func(...int))
func _(x ...map[string]int) func _(x ...map[string]int)
func _(x ...chan int) func _(x ...chan int)
...@@ -605,24 +605,22 @@ func _() { ...@@ -605,24 +605,22 @@ func _() {
// ellipsis parameters // ellipsis parameters
func _(...)
func _(...int) func _(...int)
func _(...*int) func _(...*int)
func _(...[]int) func _(...[]int)
func _(...struct{}) func _(...struct{})
func _(bool, ...interface{}) func _(bool, ...interface{})
func _(bool, ...func()) func _(bool, ...func())
func _(bool, ...func(...)) func _(bool, ...func(...int))
func _(bool, ...map[string]int) func _(bool, ...map[string]int)
func _(bool, ...chan 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 ...*int)
func _(b bool, x ...[]int) func _(b bool, x ...[]int)
func _(b bool, x ...struct{}) func _(b bool, x ...struct{})
func _(x ...interface{}) func _(x ...interface{})
func _(x ...func()) func _(x ...func())
func _(x ...func(...)) func _(x ...func(...int))
func _(x ...map[string]int) func _(x ...map[string]int)
func _(x ...chan int) func _(x ...chan int)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment