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 the method value of a pointer value returned
|
|
|
|
// from a function call.
|
|
|
|
|
|
|
|
package funcptrmethvalue
|
|
|
|
|
|
|
|
type T int
|
|
|
|
|
|
|
|
func (*T) pm() int {
|
|
|
|
_ = x
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func pf() *T {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-21 21:52:00 -06:00
|
|
|
var x = pf().pm // ERROR "initialization cycle|depends upon itself"
|