| 512 | |
| 513 | struct TSubState { |
| 514 | TSubState(TState& parent, ui32 self) |
| 515 | : Parent(parent) |
| 516 | , Name(TStringBuilder() << "Sub" << self) |
| 517 | , Self(self) |
| 518 | { |
| 519 | UNIT_ASSERT(self < 2); |
| 520 | } |
| 521 | |
| 522 | TSubState& OtherState(); |
| 523 |
nothing calls this directly
no test coverage detected