2018-03-13 19:59:41 +00:00
|
|
|
// errorcheck -0 -m
|
2016-11-28 22:39:31 +00:00
|
|
|
|
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2018-03-13 19:59:41 +00:00
|
|
|
// Test inlining of variadic functions.
|
2016-11-28 22:39:31 +00:00
|
|
|
// See issue #18116.
|
|
|
|
|
|
|
|
package foo
|
|
|
|
|
|
|
|
func head(xs ...string) string { // ERROR "can inline head" "leaking param: xs to result"
|
|
|
|
return xs[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
func f() string { // ERROR "can inline f"
|
2021-05-26 03:14:33 +00:00
|
|
|
x := head("hello", "world") // ERROR "inlining call to head" "\.\.\. argument does not escape"
|
2016-11-28 22:39:31 +00:00
|
|
|
return x
|
|
|
|
}
|