Sign in
go
/
tools
/
198986d2ddbacf9079af2ab61e6e24fda15631a1
/
.
/
go
/
ssa
/
testdata
/
indirect.txtar
blob: 595bd2e15c202444fc19717086513e41a19e753b [
file
] [
log
] [
blame
]
--
go
.
mod
--
module
testdata
go
1.18
--
a
/
a
.
go
--
package
a
import
"testdata/b"
func A
()
{
var
x b
.
B
x
.
F
()
}
--
b
/
b
.
go
--
package
b
import
"testdata/c"
type B
struct
{
c
.
C
}
--
c
/
c
.
go
--
package
c
type C
int
func
(
C
)
F
()
{}