blob: f65b9db17b6573548e8cb74665edbbda45ed99a7 [file] [log] [blame]
Argyrios Kyrtzidisc4d2c902011-02-28 19:49:42 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store region %s
Zhongxing Xu4fd56812010-11-26 08:21:53 +00002
3class A {
4protected:
5 int x;
6};
7
8class B : public A {
9public:
10 void f();
11};
12
13void B::f() {
14 x = 3;
15}