aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/base-init.cpp
blob: e63d50855e103d2a6acc3ebdc67c4df2f5c0bf54 (plain) (blame)
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-checker=core,debug.ExprInspection -analyzer-store region -analyzer-ipa=inlining -verify %s
// XFAIL: *

void clang_analyzer_eval(bool);

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;
  clang_analyzer_eval(b.getx() == 0); // expected-warning{{TRUE}}
}