diff options
author | Rob Pike <r@golang.org> | 2009-08-17 13:30:22 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2009-08-17 13:30:22 -0700 |
commit | 1c40663fb96846c5d56e9ea4475cdcbaa24e6adf (patch) | |
tree | 971cc7e3c955465162133ad90062126ba518107a /test/fixedbugs/bug051.go | |
parent | a6a1b241351c3df6d48967cfdf40fb3c7fe72ff3 (diff) | |
download | golang-1c40663fb96846c5d56e9ea4475cdcbaa24e6adf.tar.gz |
fix up some irregular indentation
R=rsc
OCL=33382
CL=33391
Diffstat (limited to 'test/fixedbugs/bug051.go')
-rw-r--r-- | test/fixedbugs/bug051.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/fixedbugs/bug051.go b/test/fixedbugs/bug051.go index 199a4b95c..dd1662306 100644 --- a/test/fixedbugs/bug051.go +++ b/test/fixedbugs/bug051.go @@ -7,9 +7,9 @@ package main func f() int { - return 0; + return 0; } func main() { - const n = f(); // ERROR "const" + const n = f(); // ERROR "const" } |