summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-01-06 20:17:58 -0800
committerRob Pike <r@golang.org>2009-01-06 20:17:58 -0800
commit86a1db3d15fe18b0c7bf3ddd30efa4767f3c0f7a (patch)
tree044a46d21a8690e628a5b9f9db7f038db45e87a3
parent25b9ae980acd8c6255762a5bf87289b3d2c184ad (diff)
downloadgolang-86a1db3d15fe18b0c7bf3ddd30efa4767f3c0f7a.tar.gz
18 tests are behaving incorrectly
no more surprises - all caught up R=rsc DELTA=4 (0 added, 0 deleted, 4 changed) OCL=22194 CL=22194
-rw-r--r--test/complit.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/complit.go b/test/complit.go
index 67064fe23..82e38f41d 100644
--- a/test/complit.go
+++ b/test/complit.go
@@ -42,10 +42,10 @@ func main() {
//if len(a3) != 10 || a2[3] != 0 { panic("a3") }
var oai []int;
- oai = &[]int{1,2,3};
+ oai = []int{1,2,3};
if len(oai) != 3 { panic("oai") }
- at := []*T{&t, &t, &t};
+ at := [...]*T{&t, &t, &t};
if len(at) != 3 { panic("at") }
c := make(chan int);
@@ -53,7 +53,7 @@ func main() {
if len(ac) != 3 { panic("ac") }
aat := [][len(at)]*T{at, at};
- if len(aat) != 2 || len(aat[1]) != 3 { panic("at") }
+ if len(aat) != 2 || len(aat[1]) != 3 { panic("aat") }
s := string([]byte{'h', 'e', 'l', 'l', 'o'});
if s != "hello" { panic("s") }
@@ -61,7 +61,7 @@ func main() {
m := map[string]float{"one":1.0, "two":2.0, "pi":22./7.};
if len(m) != 3 { panic("m") }
- eq(&[]*R{itor(0), itor(1), itor(2), itor(3), itor(4), itor(5)});
+ eq([]*R{itor(0), itor(1), itor(2), itor(3), itor(4), itor(5)});
p1 := NewP(1, 2);
p2 := NewP(1, 2);