+stateify type
| 76 | |
| 77 | // +stateify type |
| 78 | type truncatingInt8 struct { |
| 79 | save int64 |
| 80 | load int8 `state:"nosave"` |
| 81 | } |
| 82 | |
| 83 | func (t *truncatingInt8) StateSave(m state.Sink) { |
| 84 | m.Save(0, &t.save) |
nothing calls this directly
no outgoing calls
no test coverage detected