mirror of
https://github.com/golang/go
synced 2024-11-05 17:36:15 -07:00
8d95245d0d
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
6 lines
90 B
Go
6 lines
90 B
Go
package p1
|
|
|
|
type SockaddrUnix int
|
|
|
|
func (s SockaddrUnix) Error() string { return "blah" }
|