commit | 05a1eb1ab0650b465b23f01ca0ea5944735fa63b | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Thu Dec 03 01:12:02 2009 -0800 |
committer | Russ Cox <rsc@golang.org> | Thu Dec 03 01:12:02 2009 -0800 |
tree | 3538ef03a4d9e1387322bb39f68d7d631247c576 | |
parent | 41861a881292d287b14e4e4c38ab21b97182e782 [diff] [blame] |
gc: recursive type error Fixes #245. R=ken2 https://golang.org/cl/164094
diff --git a/test/fixedbugs/bug224.go b/test/fixedbugs/bug224.go new file mode 100644 index 0000000..11ee57e --- /dev/null +++ b/test/fixedbugs/bug224.go
@@ -0,0 +1,10 @@ +// errchk $G $D/$F.go + +// 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 T // ERROR "recursive" +