Home | History | Annotate | Download | only in Analysis
      1 // RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store region %s
      2 
      3 class A {
      4 protected:
      5   int x;
      6 };
      7 
      8 class B : public A {
      9 public:
     10   void f();
     11 };
     12 
     13 void B::f() {
     14   x = 3;
     15 }
     16