2016-04-10 15:32:26 -06:00
|
|
|
// Copyright 2012 The Go Authors. All rights reserved.
|
2012-02-08 22:26:08 -07:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2012-08-25 02:16:02 -06:00
|
|
|
// Use the functions in pkg2.go so that the inlined
|
2012-02-08 22:26:08 -07:00
|
|
|
// forms get type-checked.
|
|
|
|
|
2012-08-25 02:16:02 -06:00
|
|
|
package pkg3
|
2012-02-08 22:26:08 -07:00
|
|
|
|
2012-08-25 02:16:02 -06:00
|
|
|
import "./pkg2"
|
2012-02-08 22:26:08 -07:00
|
|
|
|
2012-08-25 02:16:02 -06:00
|
|
|
var x = pkg2.F()
|
|
|
|
var v = pkg2.V
|