Files
unison/build-support/test-clang17-stdlibcpp-map.cc

13 lines
206 B
C++
Raw Normal View History

#include <iostream>
#include <map>
#include <tuple>
int
main()
{
std::map<std::tuple<int, int>, int> testMap;
testMap[{1, 1}] = 2;
std::cout << testMap.at({1, 1}) << std::endl;
return 0;
}