mirror of
https://github.com/golang/go
synced 2024-11-20 09:04:44 -07:00
13 lines
89 B
Go
13 lines
89 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"./p"
|
||
|
)
|
||
|
|
||
|
type T struct{ *p.S }
|
||
|
|
||
|
func main() {
|
||
|
var t T
|
||
|
p.F(t)
|
||
|
}
|