blob: 5d0d19009eb4025fbee70373983fafeae95db1d6 [file] [log] [blame]
package initial
import "fmt"
// init functions are not renamed
func init() { foo() }
// Type S.
type S struct {
t
u int
}
// Function bar.
func bar(s *S) {
fmt.Println(s.t, s.u) // comment inside function
}