1package a
2
3type S struct {
4	a Key
5}
6
7func (s S) A() Key {
8	return s.a
9}
10
11type Key struct {
12	key int64
13}
14