summaryrefslogtreecommitdiffstats
path: root/test/Analysis/base-init.cpp
blob: 800763b25b4990c8bcd96a67378526de59d39b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store region -analyzer-inline-call -cfg-add-initializers -verify %s

class A {
  int x;
public:
  A();
  int getx() const {
    return x;
  }
};

A::A() : x(0) {
}

class B : public A {
  int y;
public:
  B();
};

B::B() {
}

void f() {
  B b;
  if (b.getx() != 0) {
    int *p = 0;
    *p = 0; // no-warning
  }
}
OpenPOWER on IntegriCloud