blob: 2f18498d2a30cf33e0a90aa3fa8c175491938deb [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"
}