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