| 1 | #include <map> |
| 2 | |
| 3 | int main() |
| 4 | { |
| 5 | std::multimap<int, char> mm{{2019, 'A'}}; |
| 6 | |
| 7 | // Here we have std::__map_node_handle_specifics which is a NamedDecl and requires special treament. |
| 8 | auto jandle = mm.extract(2019); |
| 9 | } |
| 10 |
nothing calls this directly
no outgoing calls
no test coverage detected