1 // RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_ACCESS_protected 2 class A { 3 protected: 4 int foo(); 5 }; 6 A a; 7