projects
/
platform
/
upstream
/
llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f8fd1fb2dd9cba8c55e599d67d16084c995a33b3
[platform/upstream/llvm.git]
/
1
#include <deque>
2
3
struct Foo {
4
int a;
5
};
6
7
int main(int argc, char **argv) {
8
std::deque<Foo> a = {{3}, {1}, {2}};
9
return 0; // Set break point at this line.
10
}