blob: 4552183d153fdc1ea46dbb7e786c1ab6b15cc5d0 [file] [log] [blame]
package a
type PointerGood struct {
P *int
buf [1000]uintptr
}
type PointerBad struct {
P *int
buf [1000]uintptr
}
type PointerSorta struct {
a struct {
p *int
q uintptr
}
b struct {
p *int
q [2]uintptr
}
}
type PointerSortaBad struct {
b struct {
p *int
q uintptr
}
a struct {
p *int
q [2]uintptr
}
}