go/test/fixedbugs/issue4879.dir/a.go
Rémy Oudompheng 9e66ee4562 cmd/gc: fix corruption in export of &T{} literals.
Composite literals using the &T{} form were incorrectly
exported, leading to weird errors at import time.

Fixes #4879.

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/7395054
2013-02-26 00:43:31 +01:00

34 lines
466 B
Go

package a
import (
"unsafe"
)
type Collection struct {
root unsafe.Pointer
}
type nodeLoc struct{}
type slice []int
type maptype map[int]int
func MakePrivateCollection() *Collection {
return &Collection{
root: unsafe.Pointer(&nodeLoc{}),
}
}
func MakePrivateCollection2() *Collection {
return &Collection{
root: unsafe.Pointer(&slice{}),
}
}
func MakePrivateCollection3() *Collection {
return &Collection{
root: unsafe.Pointer(&maptype{}),
}
}