mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-25 14:28:54 -04:00
12 lines
140 B
C++
12 lines
140 B
C++
// 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;
|