C++程序  |  12行  |  140 B

// 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;