mirror of
https://github.com/golang/go
synced 2024-11-05 21:26:11 -07:00
22951fbc89
Fixes #49003 Change-Id: If09c6f028dce5440b1be238612653ffdd626113a Reviewed-on: https://go-review.googlesource.com/c/go/+/356189 Trust: Keith Randall <khr@golang.org> Reviewed-by: roger peppe <rogpeppe@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Robert Griesemer <gri@golang.org> Reviewed-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
13 lines
255 B
Go
13 lines
255 B
Go
// errorcheck
|
|
|
|
// 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 p
|
|
|
|
func f(s string) int {
|
|
for range s {
|
|
}
|
|
} // ERROR "missing return"
|