mirror of
https://github.com/golang/go
synced 2024-11-02 13:42:29 +00:00
868a110c56
Otherwise, if -d=panic was set, check2 will treat already reported error as internal compiler error. For #43311 Fixes #44445 Change-Id: I5dbe06334666df21d9107396b9dcfdd905aa1e44 Reviewed-on: https://go-review.googlesource.com/c/go/+/294850 Trust: Cuong Manh Le <cuong.manhle.vn@gmail.com> Run-TryBot: Cuong Manh Le <cuong.manhle.vn@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
15 lines
284 B
Go
15 lines
284 B
Go
// errorcheck -d=panic
|
|
|
|
// Copyright 2009 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
|
|
|
|
import "sort"
|
|
|
|
func main() {
|
|
sort.Sort(nil)
|
|
var x int
|
|
sort(x) // ERROR "package"
|
|
}
|