brintos

brintos / llvm-project-archived public Read only

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