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