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