summaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue1304.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/issue1304.go')
-rw-r--r--test/fixedbugs/issue1304.go23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/fixedbugs/issue1304.go b/test/fixedbugs/issue1304.go
new file mode 100644
index 000000000..1206e1840
--- /dev/null
+++ b/test/fixedbugs/issue1304.go
@@ -0,0 +1,23 @@
+// run
+
+// Copyright 2014 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
+
+var a = 1
+
+func main() {
+ defer func() {
+ recover()
+ if a != 2 {
+ println("BUG a =", a)
+ }
+ }()
+ a = 2
+ b := a - a
+ c := 4
+ a = c / b
+ a = 3
+}