1
0
mirror of https://github.com/golang/go synced 2024-11-11 21:50:21 -07:00

test update. some tests now run; no change to output

SVN=126328
This commit is contained in:
Rob Pike 2008-07-08 11:30:20 -07:00
parent 6db99de606
commit c38391ad7b
3 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,6 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
func simple(ia,ib,ic int) (oa,ob int);

View File

@ -74,7 +74,7 @@ main()
for i := 0; i < 10; i = i + 1 {
integer := new(Integer);
integer.Init_BUG(i);
list.Insert(integer);
list.Insert(integer); //BUG: this is the failing line
}
list.Print();

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// $G $D/$F.go || echo BUG: known to fail incorrectly
// $G $D/$F.go && $L $F.$A && ./$A.out
package main