mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
11 lines
248 B
C++
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.
|
|
} |