mirror of
https://github.com/golang/go
synced 2024-11-05 23:26:18 -07:00
f71444955a
For #40252 Change-Id: Ie23d2789ca9b4b9081adb39ab64c80c412ad58ce Reviewed-on: https://go-review.googlesource.com/c/go/+/248637 Run-TryBot: Ian Lance Taylor <iant@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
17 lines
308 B
Go
17 lines
308 B
Go
// 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
|
|
|
|
import "./a"
|
|
|
|
func main() {
|
|
defer func() {
|
|
if recover() == nil {
|
|
panic("expected nil pointer dereference")
|
|
}
|
|
}()
|
|
a.Call()
|
|
}
|