mirror of
https://github.com/golang/go.git
synced 2025-05-05 15:43:04 +00:00
Fixes #69506. Change-Id: I18215e11f214b12d5f65be1d1740181e427f8817 Reviewed-on: https://go-review.googlesource.com/c/go/+/617015 Reviewed-by: Alan Donovan <adonovan@google.com> Reviewed-by: Robert Griesemer <gri@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
10 lines
343 B
Go
10 lines
343 B
Go
// Copyright 2024 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 _(a int, b /* ERROR missing parameter type */ )
|
|
func _(a int, /* ERROR missing parameter name */ []int)
|
|
func _(a int, /* ERROR missing parameter name */ []int, c int)
|