+stateify type
| 148 | |
| 149 | // +stateify type |
| 150 | type truncatingComplex64 struct { |
| 151 | save complex128 |
| 152 | load complex64 `state:"nosave"` |
| 153 | } |
| 154 | |
| 155 | func (t *truncatingComplex64) StateSave(m state.Sink) { |
| 156 | m.Save(0, &t.save) |
nothing calls this directly
no outgoing calls
no test coverage detected