xref: /openbsd-src/gnu/llvm/clang/tools/scan-build-py/tests/functional/src/emit-two.c (revision b99ef4df7fac99f3475b694d6cd4990521c99ae6)
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