mirror of
https://github.com/golang/go.git
synced 2025-05-14 20:04:39 +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
8 lines
64 B
Go
8 lines
64 B
Go
package main
|
|
|
|
import "./p2"
|
|
|
|
func main() {
|
|
_ = p2.SockUnix()
|
|
}
|