Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
132 B
C++
Raw Permalink Normal View History

#include <deque>
int main(int argc, char **argv) {
std::deque<int> a = {3, 1, 2};
return 0; // Set break point at this line.
}