1
0
mirror of https://github.com/golang/go synced 2024-09-24 15:20:16 -06:00
go/test/fixedbugs/bug080.go
Russ Cox 51c3ac7e3f bug046 and bug080 are fixed
R=r
DELTA=72  (30 added, 42 deleted, 0 changed)
OCL=22373
CL=22378
2009-01-08 20:06:37 -08:00

24 lines
458 B
Go

// $G $D/$F.go || echo BUG: fails incorrectly
// 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.
package main
func f1() (x int, y float) {
}
func f2 (x int, y float) {
}
func main() {
f2(f1()); // this should be a legal call
}
/*
bug080.go:12: illegal types for operand: CALL
(<int32>INT32)
({<x><int32>INT32;<y><float32>FLOAT32;})
*/