summaryrefslogtreecommitdiffstats
path: root/test/Analysis/initializer.cpp
blob: 656a8bf8eed839db6178c019ec7d78af2949de4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store region -cfg-add-initializers -verify %s

class A {
  int x;
public:
  A();
};

A::A() : x(0) {
  if (x != 0) {
    int *p = 0;
    *p = 0; // no-warning
  }
}