Files
codeql/cpp/ql/test/library-tests/ir/no-function-calls/test.cpp
2025-05-14 13:36:52 +02:00

14 lines
252 B
C++

// Test for edge case, where we have a database without any function calls or
// where none of the function calls have any arguments, but where we do have
// a delete expression.
void foo(int* x) {
delete x;
}
void bar();
void jazz() {
bar();
}