1// errorcheck
2
3// Copyright 2014 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// gc used to recurse infinitely when dowidth is applied
8// to a broken recursive type again.
9// See golang.org/issue/9432.
10package p
11
12type foo struct { // ERROR "invalid recursive type|cycle"
13	bar  foo
14	blah foo
15}
16