| 8 | template <int Id> |
| 9 | struct base_template { |
| 10 | base_template() : base_id(Id) {} |
| 11 | virtual ~base_template() = default; |
| 12 | virtual int id() const { return base_id; } |
| 13 | int base_id; |
nothing calls this directly
no outgoing calls
no test coverage detected