| 9702 | class ReturnSentinel { |
| 9703 | public: |
| 9704 | explicit ReturnSentinel(DeathTest* test) : test_(test) { } |
| 9705 | ~ReturnSentinel() { test_->Abort(TEST_ENCOUNTERED_RETURN_STATEMENT); } |
| 9706 | private: |
| 9707 | DeathTest* const test_; |
nothing calls this directly
no outgoing calls
no test coverage detected