diff options
Diffstat (limited to 'test/func2.go')
-rw-r--r-- | test/func2.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/func2.go b/test/func2.go index 5a6d7d0e1..87e78194e 100644 --- a/test/func2.go +++ b/test/func2.go @@ -5,7 +5,6 @@ // license that can be found in the LICENSE file. package main -import os "os" type t1 int type t2 int @@ -23,7 +22,7 @@ func f8(os int) int func f9(os int) int { return os } -func f10(err os.Error) os.Error { +func f10(err error) error { return err } func f11(t1 string) string { |