| 284 | // c++ rule of 5 or whatever: |
| 285 | |
| 286 | ~TInlineTask() |
| 287 | { |
| 288 | value.~InternalValue<Allow::NONE, TaskStages::NONE>(); |
| 289 | } |
| 290 | TInlineTask(TInlineTask && other) |
| 291 | { |
| 292 | this->value = {}; // Prevents ICE |
nothing calls this directly
no outgoing calls
no test coverage detected