| 1432 | #if defined(NAMEOF_MEMBER_SUPPORTED) && NAMEOF_MEMBER_SUPPORTED |
| 1433 | |
| 1434 | struct StructMemberInitializationUsingNameof { |
| 1435 | std::string teststringfield = std::string{nameof::nameof_member<&StructMemberInitializationUsingNameof::teststringfield>()}; |
| 1436 | }; |
| 1437 | |
| 1438 | struct StructWithNonConstexprDestructor { |
| 1439 | ~StructWithNonConstexprDestructor() {} |
nothing calls this directly
no outgoing calls
no test coverage detected