summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug056.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2008-10-29 14:09:48 -0700
committerRuss Cox <rsc@golang.org>2008-10-29 14:09:48 -0700
commitc86f498275e9f14930b887558c64fdc6a6690dbb (patch)
tree46d5341a6b1ffe69b3feed9abdae12db0f846340 /test/fixedbugs/bug056.go
parent22b1834c8b0b97829f006ffe07001e926b7bc8b0 (diff)
downloadgolang-c86f498275e9f14930b887558c64fdc6a6690dbb.tar.gz
more simple test fixes
R=r OCL=18035 CL=18035
Diffstat (limited to 'test/fixedbugs/bug056.go')
-rw-r--r--test/fixedbugs/bug056.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug056.go b/test/fixedbugs/bug056.go
index 44473191f..d816b7468 100644
--- a/test/fixedbugs/bug056.go
+++ b/test/fixedbugs/bug056.go
@@ -6,7 +6,7 @@
package main
-func frexp() (a int, b double) {
+func frexp() (a int, b float64) {
return 1, 2.0
}