mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
cd47e8944d
Follow-up on #28450 (golang.org/cl/152417). Updates #28450. Fixes #29107. Change-Id: Ib4b4fe582c35315a4f71cf6dbc7f7f2f24b37ec1 Reviewed-on: https://go-review.googlesource.com/c/152758 Reviewed-by: Matthew Dempsky <mdempsky@google.com>
18 lines
628 B
Go
18 lines
628 B
Go
// errorcheck
|
|
|
|
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package p
|
|
|
|
func f(a, b, c, d ...int) {} // ERROR "non-final parameter a"
|
|
func g(a ...int, b ...int) {} // ERROR "non-final parameter a"
|
|
func h(...int, ...int, float32) {} // ERROR "non-final parameter"
|
|
|
|
type a func(...float32, ...interface{}) // ERROR "non-final parameter"
|
|
type b interface {
|
|
f(...int, ...int) // ERROR "non-final parameter"
|
|
g(a ...int, b ...int, c float32) // ERROR "non-final parameter a"
|
|
valid(...int)
|
|
}
|