(hello int32)
| 102 | } |
| 103 | |
| 104 | func (p *simpleHandler) TestMapMap(hello int32) (r map[int32]map[int32]int32, err error) { |
| 105 | |
| 106 | r = map[int32]map[int32]int32{ |
| 107 | -4: {-4: -4, -3: -3, -2: -2, -1: -1}, |
| 108 | 4: {4: 4, 3: 3, 2: 2, 1: 1}, |
| 109 | } |
| 110 | return |
| 111 | } |
| 112 | |
| 113 | func (p *simpleHandler) TestInsanity(argument *Insanity) (r map[UserId]map[Numberz]*Insanity, err error) { |
| 114 | //lint:ignore ST1005 To be consistent with other language libraries. |
no outgoing calls