2012-02-18 21:15:42 +00:00
|
|
|
// compile
|
2009-05-14 01:05:27 +00: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 19:43:24 +00:00
|
|
|
package bug150
|
2009-05-14 01:05:27 +00: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 23:37:44 +00:00
|
|
|
bugs/bug150.go:13: reorder2: too many function calls evaluating parameters
|
2009-05-14 01:05:27 +00:00
|
|
|
*/
|