1
0
mirror of https://github.com/golang/go synced 2024-09-30 16:08:36 -06:00
go/test/fixedbugs/issue5910.dir/main.go
Rémy Oudompheng 49da9a8e44 cmd/gc: fix inlining of unnamed structs with embedded fields.
Update #5910.

R=golang-dev, daniel.morsing, rsc
CC=golang-dev
https://golang.org/cl/11373044
2013-08-05 22:09:53 +02:00

9 lines
74 B
Go

package main
import "a"
func main() {
f := new(a.Future)
f.Result()
}