mirror of
https://github.com/golang/go
synced 2024-11-19 05:54:44 -07:00
836a517f69
Fixes #2682. R=lvd CC=golang-dev https://golang.org/cl/5538043
17 lines
311 B
Go
17 lines
311 B
Go
// Copyright 2012 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.
|
|
|
|
// Use the functions in one.go so that the inlined
|
|
// forms get type-checked.
|
|
|
|
package two
|
|
|
|
import "./one"
|
|
|
|
func use() {
|
|
one.F1(nil)
|
|
one.F2(nil)
|
|
}
|
|
|