blob: 7c0704be819f7b026b135f6c5828e925411747f6 [file] [log] [blame]
Test of cross-package inlining.
The first case creates a new import,
the second reuses an existing one.
-- go.mod --
module testdata
go 1.12
-- a/a.go --
package a
// This comment does not migrate.
import (
"fmt"
"testdata/b"
)
// Nor this one.
func A() {
fmt.Println()
b.B1() //@ inline(re"B1", b1result)
b.B2() //@ inline(re"B2", b2result)
}
-- b/b.go --
package b
import "testdata/c"
import "fmt"
func B1() { c.C() }
func B2() { fmt.Println() }
-- c/c.go --
package c
func C() {}
-- b1result --
package a
// This comment does not migrate.
import (
"fmt"
"testdata/b"
c "testdata/c"
)
// Nor this one.
func A() {
fmt.Println()
c.C() //@ inline(re"B1", b1result)
b.B2() //@ inline(re"B2", b2result)
}
-- b2result --
package a
// This comment does not migrate.
import (
"fmt"
"testdata/b"
)
// Nor this one.
func A() {
fmt.Println()
b.B1() //@ inline(re"B1", b1result)
fmt.Println() //@ inline(re"B2", b2result)
}