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
|
|
|
|
|
2020-09-29 03:11:10 -06:00
|
|
|
type I1 interface{ I2 } // ERROR "interface"
|
2009-08-21 18:42:41 -06:00
|
|
|
type I2 int
|
|
|
|
|
2020-09-29 03:11:10 -06:00
|
|
|
type I3 interface{ int } // ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
|
|
|
|
type S struct {
|
2020-09-29 03:11:10 -06:00
|
|
|
x interface{ S } // ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
}
|
2020-09-29 03:11:10 -06:00
|
|
|
type I4 interface { // GC_ERROR "invalid recursive type I4\n\tLINE: I4 refers to\n\tLINE: I4$"
|
|
|
|
I4 // GCCGO_ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
}
|
|
|
|
|
2020-09-29 03:11:10 -06:00
|
|
|
type I5 interface { // GC_ERROR "invalid recursive type I5\n\tLINE: I5 refers to\n\tLINE+4: I6 refers to\n\tLINE: I5$"
|
|
|
|
I6 // GCCGO_ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
}
|
|
|
|
|
2019-08-30 15:54:21 -06:00
|
|
|
type I6 interface {
|
2020-09-29 03:11:10 -06:00
|
|
|
I5 // GCCGO_ERROR "interface"
|
2009-08-21 22:30:24 -06:00
|
|
|
}
|