mirror of
https://github.com/golang/go
synced 2024-11-06 01:46:12 -07:00
a4fb8c13db
Change-Id: I288bd3091ea81db7b616747cbec8958a31d98b7e Reviewed-on: https://go-review.googlesource.com/16532 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
13 lines
248 B
Go
13 lines
248 B
Go
// Copyright 2015 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package b
|
|
|
|
import "./a"
|
|
|
|
func F() (interface{}) {
|
|
var v *a.T
|
|
return v.Foo()
|
|
}
|