Files
codeql/cpp/ql/test/query-tests/Likely Bugs/Underspecified Functions/test.cpp
Ziemowit Laski b58f414ede [CPP-340] Add more test case; exclude K&R definitions of functions when looking
up ()-declarations; refactor QL code.
2019-04-12 17:25:33 -07:00

11 lines
248 B
C++

void cpp_varargs(...);
void bar();
void test() {
cpp_varargs(); // GOOD
cpp_varargs(1); // GOOD
__builtin_constant_p("something"); // GOOD: builtin
// The following is marked "good" since we are not supposed
// to analyze C++ files.
}