• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
f()13 void B::f() {
14   x = 3;
15 }
16