2012-02-18 14:15:42 -07:00
|
|
|
// compile
|
2008-07-30 11:14:39 -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.
|
|
|
|
|
2011-01-19 21:09:00 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
func f1() (x int, y float64) {
|
|
|
|
return
|
2008-07-30 11:14:39 -06:00
|
|
|
}
|
|
|
|
|
2011-01-19 21:09:00 -07:00
|
|
|
func f2(x int, y float64) {
|
|
|
|
return
|
2008-07-30 11:14:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2011-01-19 21:09:00 -07:00
|
|
|
f2(f1()) // this should be a legal call
|
2008-07-30 11:14:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
bug080.go:12: illegal types for operand: CALL
|
|
|
|
(<int32>INT32)
|
|
|
|
({<x><int32>INT32;<y><float32>FLOAT32;})
|
|
|
|
*/
|