Clang Project

clang_source_code/test/Analysis/novoidtypecrash.c
1// RUN: %clang_analyze_cc1 -analyzer-checker=core %s
2a;
3b(void **c) { // no-crash
4  *c = a;
5  int *d;
6  b(&d);
7  *d;
8}
9