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