go/test/bugs/bug367.dir/main.go

13 lines
89 B
Go

package main
import (
"./p"
)
type T struct{ *p.S }
func main() {
var t T
p.F(t)
}