Clang Project

clang_source_code/test/Analysis/diagnostics/plist-multi-file.h
1void foo(int *ptr) {
2  *ptr = 1; // expected-warning{{Dereference of null pointer (loaded from variable 'ptr')}}
3}
4