1#include <deque>
2
3struct Foo {
4 int a;
5};
6
7int main(int argc, char **argv) {
8 std::deque<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/deque-dbg-info-content/main.cpp