summaryrefslogtreecommitdiff
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
commitdc7bf11e534b92ce21630d07d0dc88096d7fb6f7 (patch)
tree971cc7e3c955465162133ad90062126ba518107a /test/int_lit.go
parentb614df3e168a31ebef8b814fc250ecfe63409d29 (diff)
downloadgo-dc7bf11e534b92ce21630d07d0dc88096d7fb6f7.tar.gz
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 1f4d318af..1cb42f5d1 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);
+ }
}