blob: 656a8bf8eed839db6178c019ec7d78af2949de4f [file] [log] [blame]
Argyrios Kyrtzidisc4d2c902011-02-28 19:49:42 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store region -cfg-add-initializers -verify %s
Zhongxing Xu9dc84c92010-11-16 07:52:17 +00002
3class A {
4 int x;
5public:
6 A();
7};
8
9A::A() : x(0) {
10 if (x != 0) {
11 int *p = 0;
12 *p = 0; // no-warning
13 }
14}