• Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: clang-check -analyze "%s" -- -c 2>&1 | FileCheck %s
2 
3 // CHECK: Dereference of null pointer
a(int * x)4 void a(int *x) { if(x){} *x = 47; }
5