summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug096.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-10-17 11:48:51 -0700
committerRob Pike <r@golang.org>2008-10-17 11:48:51 -0700
commitce308a350353fca00472af53198541d56036117f (patch)
tree5f70875cc2b6e36efa2fd59777e801a15d6d10a9 /test/fixedbugs/bug096.go
parenta9f3d4d05694dadd7689d958a145d6982a2fd6bd (diff)
downloadgolang-ce308a350353fca00472af53198541d56036117f.tar.gz
update fixed bugs (and delete an irrelevant one)
R=rsc DELTA=328 (158 added, 170 deleted, 0 changed) OCL=17353 CL=17359
Diffstat (limited to 'test/fixedbugs/bug096.go')
-rw-r--r--test/fixedbugs/bug096.go25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/fixedbugs/bug096.go b/test/fixedbugs/bug096.go
new file mode 100644
index 000000000..f66caa5c0
--- /dev/null
+++ b/test/fixedbugs/bug096.go
@@ -0,0 +1,25 @@
+// $G $D/$F.go || echo BUG should compile
+
+// 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
+
+type A []int;
+
+func main() {
+ a := &A{0};
+ b := &A{0, 1};
+}
+
+/*
+uetli:~/Source/go1/test/bugs gri$ 6g bug096.go && 6l bug096.6 && 6.out
+Trace/BPT trap
+uetli:~/Source/go1/test/bugs gri$
+*/
+
+/*
+It appears that the first assignment changes the size of A from open
+into a fixed array.
+*/