summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug043.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug043.go')
-rw-r--r--test/fixedbugs/bug043.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug043.go b/test/fixedbugs/bug043.go
index a0c7eb1e9..65d720b80 100644
--- a/test/fixedbugs/bug043.go
+++ b/test/fixedbugs/bug043.go
@@ -18,6 +18,6 @@ func g (x int) float ; // BUG this doesn't
func g (x int) float { return 0.0 }
func h (x int) (u int, v int) ; // BUG this doesn't
-func h (x int) (u int, v int) {}
+func h (x int) (u int, v int) { return; }
func main() {}