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