blob: 28c27d87d0a27b7f2bf2d227529a1b256f5a90f9 [file] [log] [blame]
// Copyright 2021 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 missingfunction
func uniqueArguments() {
var s string
var i int
undefinedUniqueArguments(s, i, s) // want "undeclared name: undefinedUniqueArguments"
}
func undefinedUniqueArguments(s1 string, i int, s2 string) { panic("not implemented") }