mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
When local declarations needed unexported types, these could be missing in the export data. Fixes build with -gcflags -lll, except for exp/gotype. R=golang-dev, rsc, lvd CC=golang-dev https://golang.org/cl/6813067
5 lines
86 B
Go
5 lines
86 B
Go
package p2
|
|
|
|
import "./p1"
|
|
|
|
func SockUnix() error { var s *p1.SockaddrUnix; return s }
|