fune/tools/clang-tidy/test/readability-delete-null-pointer.cpp

6 lines
59 B
C++

void func() {
int* f = 0;
if (f) {
delete f;
}
}