summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/import-std-module/vector-dbg-info-content/main.cpp
blob: 30f74acdd5e36e043316f7648cd48ccc5ef97ffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <__verbose_abort>
#include <vector>

// Some expressons from the test need this symbol to be compiled when libcxx is
// built statically.
void *libcpp_verbose_abort_ptr = (void *)&std::__libcpp_verbose_abort;

struct Foo {
  int a;
};

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