From 80f18fc933cf3f3e829c5455a1023d69f7b86e52 Mon Sep 17 00:00:00 2001 From: Ondřej Surý Date: Tue, 13 Sep 2011 13:11:55 +0200 Subject: Imported Upstream version 60 --- test/fixedbugs/bug190.go | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 test/fixedbugs/bug190.go (limited to 'test/fixedbugs/bug190.go') diff --git a/test/fixedbugs/bug190.go b/test/fixedbugs/bug190.go deleted file mode 100644 index da0bfde0f..000000000 --- a/test/fixedbugs/bug190.go +++ /dev/null @@ -1,26 +0,0 @@ -// $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 S struct { - p *S; - s []S; - m map[int] S; - c chan S; - i interface { f(S); }; - f func(S) S; -} - -func main() { - var s S; - s.p = &s; - s.s = make([]S, 1); - s.s[0] = s; - s.m[0] = s; - s.c <- s; - s.i.f(s); -} -- cgit v1.2.3