1 2 3 4 5 6
#include <unordered_map> int main() { std::unordered_map<int, int> map; map[0] = 0; return 0; }