summaryrefslogtreecommitdiffstats
path: root/clang/test/Analysis/region-store.cpp
blob: 5ea5c3f82fd6aedb795fa2e8f938f22977e7bf03 (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
// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix -verify %s
// expected-no-diagnostics

class Loc {
  int x;
};
class P1 {
public:
  Loc l;
  void setLoc(Loc L) {
    l = L;
  }
  
};
class P2 {
public:
  int m;
  int accessBase() {
    return m;
  }
};
class Derived: public P1, public P2 {
};
int radar13445834(Derived *Builder, Loc l) {
  Builder->setLoc(l);
  return Builder->accessBase();
  
}
OpenPOWER on IntegriCloud