summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug107.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-08-17 13:30:22 -0700
committerRob Pike <r@golang.org>2009-08-17 13:30:22 -0700
commitdc7bf11e534b92ce21630d07d0dc88096d7fb6f7 (patch)
tree971cc7e3c955465162133ad90062126ba518107a /test/fixedbugs/bug107.go
parentb614df3e168a31ebef8b814fc250ecfe63409d29 (diff)
downloadgo-dc7bf11e534b92ce21630d07d0dc88096d7fb6f7.tar.gz
fix up some irregular indentation
R=rsc OCL=33382 CL=33391
Diffstat (limited to 'test/fixedbugs/bug107.go')
-rw-r--r--test/fixedbugs/bug107.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/fixedbugs/bug107.go b/test/fixedbugs/bug107.go
index 80fa96647..87cdca7fc 100644
--- a/test/fixedbugs/bug107.go
+++ b/test/fixedbugs/bug107.go
@@ -7,8 +7,8 @@
package main
import os "os"
func f() (os int) {
- // In the next line "os" should refer to the result variable, not
- // to the package.
- v := os.Open("", 0, 0); // ERROR "undefined"
- return 0
+ // In the next line "os" should refer to the result variable, not
+ // to the package.
+ v := os.Open("", 0, 0); // ERROR "undefined"
+ return 0
}