2012-01-20 15:14:09 -07:00
|
|
|
// echo bug395 is broken # takes 90+ seconds to break
|
|
|
|
// # $G $D/$F.go || echo bug395
|
2012-01-17 02:00:57 -07:00
|
|
|
|
2012-09-23 11:16:14 -06:00
|
|
|
// NOTE: This test is not run by 'run.go' and so not run by all.bash.
|
|
|
|
// To run this test you must use the ./run shell script.
|
|
|
|
|
2012-01-17 02:00:57 -07:00
|
|
|
// Copyright 2011 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.
|
|
|
|
|
|
|
|
// Issue 1909
|
|
|
|
// Would OOM due to exponential recursion on Foo's expanded methodset in nodefmt
|
|
|
|
package test
|
|
|
|
|
|
|
|
type Foo interface {
|
2012-01-20 15:14:09 -07:00
|
|
|
Bar() interface {
|
|
|
|
Foo
|
|
|
|
}
|
|
|
|
Baz() interface {
|
|
|
|
Foo
|
|
|
|
}
|
|
|
|
Bug() interface {
|
|
|
|
Foo
|
|
|
|
}
|
2012-01-17 02:00:57 -07:00
|
|
|
}
|