2012-02-18 14:15:42 -07:00
|
|
|
// compile
|
2009-05-13 19:05:27 -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.
|
|
|
|
|
2012-02-03 12:43:24 -07:00
|
|
|
package bug150
|
2009-05-13 19:05:27 -06:00
|
|
|
|
|
|
|
type T int
|
|
|
|
func (t T) M()
|
|
|
|
|
|
|
|
type M interface { M() }
|
|
|
|
|
|
|
|
func g() (T, T)
|
|
|
|
|
|
|
|
func f() (a, b M) {
|
|
|
|
a, b = g();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-05-17 17:37:44 -06:00
|
|
|
bugs/bug150.go:13: reorder2: too many function calls evaluating parameters
|
2009-05-13 19:05:27 -06:00
|
|
|
*/
|