blob: 2a9244ef34b2121150a646c9530b0e6ef09d1826 [file] [log] [blame]
Zhongxing Xu4fd56812010-11-26 08:21:53 +00001// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store region %s
2
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}