summaryrefslogtreecommitdiff
path: root/test/ken/robfunc.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/ken/robfunc.go')
-rw-r--r--test/ken/robfunc.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ken/robfunc.go b/test/ken/robfunc.go
index c6b1a10c4..d88841406 100644
--- a/test/ken/robfunc.go
+++ b/test/ken/robfunc.go
@@ -40,7 +40,7 @@ func f7(a int) (int, float) {
}
-func f8(a int) (a int, b float) {
+func f8(a int) (x int, y float) {
return 8, 8.0;
}
@@ -53,7 +53,7 @@ func (t *T) m10(a int, b float) int {
}
-func f9(a int) (i int, f float) {
+func f9(a int) (in int, fl float) {
i := 9;
f := float(9);
return i, f;