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