| 92 | |
| 93 | uint32_t v; |
| 94 | enum class Status |
| 95 | { |
| 96 | Constructed = 0, |
| 97 | MoveConstructed = 1, |
| 98 | MoveAssigned = 2, |
| 99 | Destructed = 3, |
| 100 | Moved = 4, |
| 101 | }; |
| 102 | Status status; |
| 103 | }; |
| 104 |
nothing calls this directly
no outgoing calls
no test coverage detected