summaryrefslogtreecommitdiff
path: root/test/bugs
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-07-27 17:32:02 -0700
committerRuss Cox <rsc@golang.org>2009-07-27 17:32:02 -0700
commitada895fa43b9ad9dbf324e9148b158cb83f83c87 (patch)
tree0474ac3431d047d545811a35f25455e06c196572 /test/bugs
parenta91df58c5311bad7399b4f4dce66008c05285586 (diff)
downloadgo-ada895fa43b9ad9dbf324e9148b158cb83f83c87.tar.gz
move bug148, already fixed, to fixedbugs
R=ken OCL=32257 CL=32257
Diffstat (limited to 'test/bugs')
-rw-r--r--test/bugs/bug148.go39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/bugs/bug148.go b/test/bugs/bug148.go
deleted file mode 100644
index daedff105..000000000
--- a/test/bugs/bug148.go
+++ /dev/null
@@ -1,39 +0,0 @@
-// $G $D/$F.go && $L $F.$A && ! ./$A.out || echo BUG: should crash
-
-// 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 T struct {a, b int};
-
-func f(x interface{}) interface{} {
- type T struct {a, b int};
-
- if x == nil {
- return T{2, 3};
- }
-
- t := x.(T);
- println(t.a, t.b);
- return x;
-}
-
-func main() {
- inner_T := f(nil);
- f(inner_T);
-
- outer_T := T{5, 7};
- f(outer_T);
-}
-
-/*
-This prints:
-
-2 3
-5 7
-
-but it should crash: The type assertion on line 14 should fail
-for the 2nd call to f with outer_T.
-*/