artulab
projects
/
openbsd
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
64e142c53790f1b3c4afd68850b80b46ff674441
[openbsd]
/
1
#include "a.h"
2
3
bool A::b(int x) {
4
if (x)
5
return true;
6
7
return false;
8
}
9
10
bool B::member_func_a(A a) {
11
return a.b(10); // We will try and add a breakpoint here which
12
// trigger an assert since we will attempt to
13
// to add ParamVarDecl a to CXXRecordDecl A
14
};