summaryrefslogtreecommitdiffstats
path: root/test/closure4.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/closure4.go')
-rw-r--r--test/closure4.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/closure4.go b/test/closure4.go
new file mode 100644
index 0000000..ec4e0a1
--- /dev/null
+++ b/test/closure4.go
@@ -0,0 +1,21 @@
+// run
+
+// Copyright 2018 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.
+
+// Check that calling a nil func causes a proper panic.
+
+package main
+
+func main() {
+ defer func() {
+ err := recover()
+ if err == nil {
+ panic("panic expected")
+ }
+ }()
+
+ var f func()
+ f()
+}