blob: 907fe04be57db57c61f7f97717ccc00203fb08a8 [file] [log] [blame]
// RUN: %clang_cc1 -g -S -masm-verbose -o %t %s
// RUN: grep DW_AT_accessibility %t
class A {
public:
int p;
private:
int pr;
};
A a;