1
0
mirror of https://github.com/golang/go synced 2024-10-03 13:21:22 -06:00
go/test/bugs/bug367.dir/main.go
Ian Lance Taylor 5f172fadbe test: Add test for inheriting private method from anonymous field.
The spec says that all methods are inherited from an anonymous
field.  There is no exception for non-exported methods.

This is related to issue 1536.

R=rsc
CC=golang-dev
https://golang.org/cl/5012043
2011-09-14 10:31:51 -07:00

13 lines
89 B
Go

package main
import (
"./p"
)
type T struct{ *p.S }
func main() {
var t T
p.F(t)
}