2012-02-18 21:15:42 +00:00
|
|
|
// compile
|
2009-05-21 20:46:20 +00:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
2008-10-07 19:36:39 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2009-05-21 20:46:20 +00:00
|
|
|
// Check mutually recursive interfaces
|
2008-10-07 19:36:39 +00:00
|
|
|
|
2012-02-03 19:43:24 +00:00
|
|
|
package recursive
|
2008-10-07 19:36:39 +00:00
|
|
|
|
2009-01-20 22:40:40 +00:00
|
|
|
type I1 interface {
|
2008-10-07 19:36:39 +00:00
|
|
|
foo() I2
|
|
|
|
}
|
|
|
|
|
2009-01-20 22:40:40 +00:00
|
|
|
type I2 interface {
|
2008-10-07 19:36:39 +00:00
|
|
|
bar() I1
|
|
|
|
}
|
|
|
|
|
2009-01-20 22:40:40 +00:00
|
|
|
type T int
|
2008-10-07 19:36:39 +00:00
|
|
|
func (t T) foo() I2 { return t }
|
|
|
|
func (t T) bar() I1 { return t }
|