llvm-project/lldb/test/API/commands/expression/import-std-module/deque-dbg-info-content/main.cpp

11 lines
164 B
C++

#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.
}