R=r
DELTA=51 (4 added, 4 deleted, 43 changed)
OCL=30759
CL=30778
12 files changed:
package main
import (
- "file";
+ "./file";
"flag";
"fmt";
"os";
package main
import (
- "file";
+ "./file";
"flag";
"fmt";
"os";
package main
import (
- "file";
+ "./file";
"fmt";
"os";
)
import (
"flag";
"fmt";
- "gobuild";
"io";
"os";
"path";
"template";
"unicode";
"utf8";
+
+ "./gobuild";
)
type Pkg struct
package main
-import (
- "gobuild";
-)
+import "./gobuild";
func main() {
gobuild.Main();
import (
"fmt";
- "gobuild";
"io";
"path";
"template";
+
+ "./gobuild";
)
var makefileTemplate = `
package bug1
-import "bug0"
+import "./bug0"
// This is expected to fail--t0 is in package bug0 and should not be
// visible here in package bug1. The test for failure is in
package main
-import P "bug0"
+import P "./bug0"
func main() {
a0 := P.V0(); // works
// license that can be found in the LICENSE file.
package bug1
-import "bug0"
+import "./bug0"
package bug1
-import "bug0"
+import "./bug0"
type T struct { t bug0.T }
package bug1
-import "bug1"
-import "bug0"
+import "./bug1"
+import "./bug0"
type T2 struct { t bug0.T }
package main
import "os"
-import "x"
+import "./x"
func main() {
if x.Zero != 0 {