aboutsummaryrefslogtreecommitdiff
path: root/test/int_lit.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
commit74dd0ab670751feca69ca1aaf4db9859c5e52b41 (patch)
tree971cc7e3c955465162133ad90062126ba518107a /test/int_lit.go
parent3e804ba7a71576ec042cf7c22bf3b53b92b0eb60 (diff)
downloadgo-74dd0ab670751feca69ca1aaf4db9859c5e52b41.tar.gz
go-74dd0ab670751feca69ca1aaf4db9859c5e52b41.zip
fix up some irregular indentation
R=rsc OCL=33382 CL=33391
Diffstat (limited to 'test/int_lit.go')
-rw-r--r--test/int_lit.go25
1 files changed, 12 insertions, 13 deletions
diff --git a/test/int_lit.go b/test/int_lit.go
index 1f4d318afe..1cb42f5d11 100644
--- a/test/int_lit.go
+++ b/test/int_lit.go
@@ -9,17 +9,16 @@ package main
import "os"
func main() {
- s :=
- 0 +
- 123 +
- 0123 +
- 0000 +
- 0x0 +
- 0x123 +
- 0X0 +
- 0X123;
- if s != 788 {
- print("s is ", s, "; should be 788\n");
- os.Exit(1);
- }
+ s := 0 +
+ 123 +
+ 0123 +
+ 0000 +
+ 0x0 +
+ 0x123 +
+ 0X0 +
+ 0X123;
+ if s != 788 {
+ print("s is ", s, "; should be 788\n");
+ os.Exit(1);
+ }
}