2016-02-20 15:33:56 -07:00
|
|
|
// Code generated by golang.org/x/tools/cmd/bundle.
|
|
|
|
// $ bundle
|
2015-10-14 11:24:18 -06:00
|
|
|
|
|
|
|
// The package doc comment
|
|
|
|
//
|
2015-12-17 21:35:19 -07:00
|
|
|
|
2015-10-14 11:24:18 -06:00
|
|
|
package dest
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-05-11 22:39:32 -06:00
|
|
|
|
|
|
|
"domain.name/importdecl"
|
2015-10-14 11:24:18 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// init functions are not renamed
|
|
|
|
func init() { prefixfoo() }
|
|
|
|
|
|
|
|
// Type S.
|
|
|
|
type prefixS struct {
|
|
|
|
prefixt
|
|
|
|
u int
|
|
|
|
}
|
|
|
|
|
|
|
|
// Function bar.
|
|
|
|
func prefixbar(s *prefixS) { fmt.Println(s.prefixt, s.u) }
|
|
|
|
|
|
|
|
type prefixt int
|
|
|
|
|
|
|
|
const prefixc = 1
|
|
|
|
|
|
|
|
func prefixfoo() {
|
2016-05-11 22:39:32 -06:00
|
|
|
fmt.Println(importdecl.F())
|
2015-10-14 11:24:18 -06:00
|
|
|
}
|