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