gecko-dev/tools/clang-tidy/test/clang-analyzer-core.NonNullParamChecker.cpp
2018-10-02 14:10:32 +00:00

6 lines
No EOL
90 B
C++

int f(int *p) __attribute__((nonnull));
void test(int *p) {
if (!p)
f(p); // warn
}