xref: /openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/functional/src/emit-two.c (revision 4e1ee0786f11cc571bd0be17d38e46f635c719fc)
1 
2 int bad_guy(int * i)
3 {
4     *i = 9;
5     return *i;
6 }
7 
8 void bad_guy_test()
9 {
10     int * ptr = 0;
11 
12     bad_guy(ptr);
13 }
14