mirror of
https://github.com/golang/go
synced 2024-11-08 06:46:16 -07:00
ac875bc923
Fixes #17758 Change-Id: I75f5dc5be85fd8a6791ac89dfc0681be759cca36 Reviewed-on: https://go-review.googlesource.com/c/go/+/248517 Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> Reviewed-by: Matthew Dempsky <mdempsky@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
18 lines
306 B
Go
18 lines
306 B
Go
// errorcheck
|
|
|
|
// Copyright 2020 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 main
|
|
|
|
func foo() {
|
|
_ = func() {}
|
|
}
|
|
|
|
func foo() { // ERROR "foo redeclared in this block"
|
|
_ = func() {}
|
|
}
|
|
|
|
func main() {}
|