+stateify type
| 94 | |
| 95 | // +stateify type |
| 96 | type truncatingInt16 struct { |
| 97 | save int64 |
| 98 | load int16 `state:"nosave"` |
| 99 | } |
| 100 | |
| 101 | func (t *truncatingInt16) StateSave(m state.Sink) { |
| 102 | m.Save(0, &t.save) |
nothing calls this directly
no outgoing calls
no test coverage detected