2009-08-22 00:42:41 +00:00
|
|
|
// errchk $G $D/$F.go
|
|
|
|
|
|
|
|
// Copyright 2009 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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
type I1 interface { I2 } // ERROR "interface"
|
|
|
|
type I2 int
|
|
|
|
|
|
|
|
type I3 interface { int } // ERROR "interface"
|
2009-08-22 04:30:24 +00:00
|
|
|
|
|
|
|
type S struct {
|
|
|
|
x interface{ S } // ERROR "interface"
|
|
|
|
}
|
|
|
|
type I4 interface {
|
|
|
|
I4 // ERROR "interface"
|
|
|
|
}
|
|
|
|
|
|
|
|
type I5 interface {
|
2010-08-31 21:12:23 +00:00
|
|
|
I6 // GCCGO_ERROR "interface"
|
2009-08-22 04:30:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type I6 interface {
|
2010-08-31 21:12:23 +00:00
|
|
|
I5 // GC_ERROR "interface"
|
2009-08-22 04:30:24 +00:00
|
|
|
}
|