blob: 6144f2fb98a305542e9c6302a0b5716dceb1734b [file] [log] [blame]
Daniel Dunbarae3c16c2008-10-04 20:46:41 +00001// RUN: rm -rf %t &&
Daniel Dunbard7d5f022009-03-24 02:24:46 +00002// RUN: clang-cc --html-diags=%t -checker-simple %s
Daniel Dunbarae3c16c2008-10-04 20:46:41 +00003
4void f0(int x) {
5 int *p = &x;
6
7 if (x > 10) {
8 if (x == 22)
9 p = 0;
10 }
11
12 *p = 10;
13}
14
15