2012-02-16 21:49:30 -07:00
|
|
|
// errorcheck
|
2009-08-21 18:42:41 -06:00
|
|
|
|
|
|
|
// 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-21 22:30:24 -06:00
|
|
|
|
|
|
|
type S struct {
|
|
|
|
x interface{ S } // ERROR "interface"
|
|
|
|
}
|
2017-03-20 12:56:15 -06:00
|
|
|
type I4 interface { // GC_ERROR "invalid recursive type"
|
|
|
|
I4 // GCCGO_ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
}
|
|
|
|
|
2019-08-30 15:54:21 -06:00
|
|
|
type I5 interface { // GC_ERROR "invalid recursive type"
|
2010-08-31 15:12:23 -06:00
|
|
|
I6 // GCCGO_ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
}
|
|
|
|
|
2019-08-30 15:54:21 -06:00
|
|
|
type I6 interface {
|
2017-03-20 12:56:15 -06:00
|
|
|
I5 // GCCGO_ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
}
|