summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-basic/main.cpp
blob: 5bed55674bfb377ce2f02892b12b1dfb3e9e9948 (plain)
1
2
3
4
5
6
#include <deque>

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