Update .bashrc
[dotfiles/.git] / selectors / selectors.go
1 package pkg
2
3 type t struct {
4         f int
5 }
6
7 func fn(v *t) {
8         println(v.f)
9 }
10
11 func init() {
12         var v t
13         fn(&v)
14 }