summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/commands/expression/import-std-module/deque-dbg-info-content/main.cpp
blob: f8fd1fb2dd9cba8c55e599d67d16084c995a33b3 (plain)
1
2
3
4
5
6
7
8
9
10
#include <deque>

struct Foo {
  int a;
};

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