This code is valid C++11, but the braces are shown in red as invalid syntax ``` c++ std::map<std::pair<int, int>, int> m; m[{1, 2}] = 3; ```