artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
5822fbc2a710f60805aac0c10f050cee9c161bf2
[openbsd]
/
1
struct foo
2
{
3
int X;
4
int Y;
5
foo(int a, int b) : X(a), Y(b) {}
6
};
7
8
int main()
9
{
10
foo f(1,2);
11
f.X = 4; // Set break point at this line.
12
return 0;
13
}