2014-10-14 20:12:10 -06:00
|
|
|
// errorcheck
|
|
|
|
|
2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2014 The Go Authors. All rights reserved.
|
2014-10-14 20:12:10 -06:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Check for cycles in an embedded struct's method value.
|
|
|
|
|
|
|
|
package embedmethvalue
|
|
|
|
|
|
|
|
type T int
|
|
|
|
|
|
|
|
func (T) m() int {
|
|
|
|
_ = x
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
type E struct{ T }
|
|
|
|
|
|
|
|
var (
|
|
|
|
e E
|
2022-09-21 21:52:00 -06:00
|
|
|
x = e.m // ERROR "initialization cycle|depends upon itself"
|
2014-10-14 20:12:10 -06:00
|
|
|
)
|