1#include <list>
2
3struct Foo {
4 int a;
5};
6
7int main(int argc, char **argv) {
8 std::list<Foo> a = {{.a: 3}, {.a: 1}, {.a: 2}};
9 return 0; // Set break point at this line.
10}
11

source code of lldb/test/API/commands/expression/import-std-module/list-dbg-info-content/main.cpp