mirror of
https://github.com/golang/go
synced 2024-11-18 22:34:45 -07:00
f7268ab39b
Change-Id: I95bd6cd1b63a1d1b5bd255546fbf571010a67266 Reviewed-on: https://go-review.googlesource.com/19745 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
32 lines
396 B
Plaintext
32 lines
396 B
Plaintext
// Code generated by golang.org/x/tools/cmd/bundle.
|
|
// $ bundle
|
|
|
|
// The package doc comment
|
|
//
|
|
|
|
package dest
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// 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() {
|
|
fmt.Println()
|
|
}
|