android_mt6572_jiabo/external/clang/test/Tooling/clang-check-analyzer.cpp
2025-09-05 16:56:03 +08:00

4 lines
135 B
C++

// RUN: clang-check -analyze "%s" -- -c 2>&1 | FileCheck %s
// CHECK: Dereference of null pointer
void a(int *x) { if(x){} *x = 47; }