github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/cmd/bundle/testdata/src/initial/a.go (about)

     1  package initial
     2  
     3  import "fmt"
     4  
     5  // init functions are not renamed
     6  func init() { foo() }
     7  
     8  // Type S.
     9  type S struct {
    10  	t
    11  	u int
    12  }
    13  
    14  // Function bar.
    15  func bar(s *S) { fmt.Println(s.t, s.u) }