1
0
mirror of https://github.com/golang/go synced 2024-10-04 06:31:22 -06:00
go/test/fixedbugs/bug056.go
Rob Pike 69353f0a50 fix erroneous code in bugs; reported by iant.
also rob1.go runs, so fix its status.

R=gri,iant
OCL=13957
CL=13957
2008-08-07 13:27:58 -07:00

22 lines
381 B
Go

// $G $D/$F.go && $L $F.$A && ./$A.out
// 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 frexp() (a int, b double) {
return 1, 2.0
}
func main() {
a, b := frexp();
}
/*
bug056.go:8: illegal types for operand: AS
(<int32>INT32)
(<int32>INT32)
*/