+stateify type
| 112 | |
| 113 | // +stateify type |
| 114 | type truncatingInt32 struct { |
| 115 | save int64 |
| 116 | load int32 `state:"nosave"` |
| 117 | } |
| 118 | |
| 119 | func (t *truncatingInt32) StateSave(m state.Sink) { |
| 120 | m.Save(0, &t.save) |
nothing calls this directly
no outgoing calls
no test coverage detected