mirror of
https://github.com/golang/go
synced 2024-11-18 17:34:51 -07:00
1cb7f85d74
Now that Luuk's qualified exporting code is in, fixing this bug is trivial. R=ken2 CC=golang-dev https://golang.org/cl/5479048
25 lines
265 B
Go
25 lines
265 B
Go
package main
|
|
|
|
import (
|
|
"./p"
|
|
)
|
|
|
|
type T struct{ *p.S }
|
|
type I interface {
|
|
get()
|
|
}
|
|
|
|
func main() {
|
|
var t T
|
|
p.F(t)
|
|
var x interface{} = t
|
|
_, ok := x.(I)
|
|
if ok {
|
|
panic("should not satisfy main.I")
|
|
}
|
|
_, ok = x.(p.I)
|
|
if !ok {
|
|
panic("should satisfy p.I")
|
|
}
|
|
}
|