aboutsummaryrefslogtreecommitdiff
path: root/test/func.go
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2008-06-06 15:53:14 -0700
committerRobert Griesemer <gri@golang.org>2008-06-06 15:53:14 -0700
commite92b7538102ed9ea1402fb8ce4d948da27ffd456 (patch)
tree43028db105ceb59b039061a046904bd668df2b7e /test/func.go
parent2f538554f6ce8ec8b0cdb3c448759e1670cad1ff (diff)
downloadgo-e92b7538102ed9ea1402fb8ce4d948da27ffd456.tar.gz
go-e92b7538102ed9ea1402fb8ce4d948da27ffd456.zip
- fixed a few tests and added 3 incorrectly succeeding tests
- updated go_lang.txt to be more uniform and match the implementation - made makehtml work on Mac - fixed a couple of bugs in go.atg SVN=121520
Diffstat (limited to 'test/func.go')
-rw-r--r--test/func.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/func.go b/test/func.go
index 0bb551f45b..e5cb1e5512 100644
--- a/test/func.go
+++ b/test/func.go
@@ -36,12 +36,12 @@ func f6(a int) (r int) {
return 6;
}
-func f7(a int) (int, float) {
+func f7(a int) (x int, y float) {
return 7, 7.0;
}
-func f8(a int) (a int, b float) {
+func f8(a int) (x int, y float) {
return 8, 8.0;
}