comment 1 (NOT doc) */ comment 2 (NOT doc) */
| 25 | |
| 26 | /* comment 1 (NOT doc) */ /* comment 2 (NOT doc) */ |
| 27 | struct MyBase { |
| 28 | /* comment 3 (NOT doc) */ |
| 29 | /* comment 4 (doc) */ |
| 30 | Type member; |
| 31 | static Type static_member; |
| 32 | MyBase(); |
| 33 | |
| 34 | virtual ~MyBase() = default; |
| 35 | }; |
| 36 | |
| 37 | MyBase::MyBase() { } |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected