| 45 | // Not reusing base here because it would interfere with the single-inheritance test. |
| 46 | struct drvd2 : base1, base2 { |
| 47 | int id() const override { return 3 * base1::base_id + 4 * base2::base_id; } |
| 48 | }; |
| 49 | |
| 50 | // clang-format off |
nothing calls this directly
no outgoing calls
no test coverage detected