aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-10-31 17:50:38 -0400
committerRuss Cox <rsc@golang.org>2011-10-31 17:50:38 -0400
commita07841e21ebe371f7b9f45cba1e0d1a8090c58fb (patch)
tree0ce022ef9ab2ffaebd3e79a0de447528e389588c
parentd0eaa58b5a19f15546af4d61a1dc9987af168b5a (diff)
downloadgo-a07841e21ebe371f7b9f45cba1e0d1a8090c58fb.tar.gz
go-a07841e21ebe371f7b9f45cba1e0d1a8090c58fb.zip
test: make bug107 os.Error-proof
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5306087
-rw-r--r--test/fixedbugs/bug107.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixedbugs/bug107.go b/test/fixedbugs/bug107.go
index d0b062a659..0554bbc8b8 100644
--- a/test/fixedbugs/bug107.go
+++ b/test/fixedbugs/bug107.go
@@ -6,7 +6,7 @@
package main
import os "os"
-type _ os.Error
+type _ os.FileInfo
func f() (os int) {
// In the next line "os" should refer to the result variable, not
// to the package.