mirror of
https://github.com/golang/go
synced 2024-11-15 09:20:58 -07:00
ad9e6edfdd
Fixes #63462 Change-Id: I5ddf831eab630e23156f8f27a079b4ca4bb3a261 Reviewed-on: https://go-review.googlesource.com/c/go/+/533795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: David Chase <drchase@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Auto-Submit: Cuong Manh Le <cuong.manhle.vn@gmail.com>
19 lines
331 B
Go
19 lines
331 B
Go
// compile
|
|
|
|
// Copyright 2023 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() {
|
|
for b := "" < join([]string{}, "") && true; ; {
|
|
_ = b
|
|
}
|
|
}
|
|
|
|
//go:noinline
|
|
func join(elems []string, sep string) string {
|
|
return ""
|
|
}
|