1
0
mirror of https://github.com/golang/go synced 2024-11-22 13:04:44 -07:00

fix build: added missing files

TBR=rsc
DELTA=56  (56 added, 0 deleted, 0 changed)
OCL=34652
CL=34652
This commit is contained in:
Robert Griesemer 2009-09-15 13:33:16 -07:00
parent 7f25485fc6
commit 9b5eb305e1
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,28 @@
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package imports
import "io"
import (
a "io"
)
import a "io"
import (
"io";
"io";
"io";
)
import (
"io";
aLongRename "io";
b "io";
c "i" "o";
)
// TODO(gri) add more test cases

View File

@ -0,0 +1,28 @@
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package imports
import "io"
import (
a "io";
)
import a "io"
import (
"io";
"io";
"io";
)
import (
"io";
aLongRename "io";
b "io";
c "i" "o";
)
// TODO(gri) add more test cases