mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
91736025e1
llvm-svn: 60968
13 lines
198 B
C++
13 lines
198 B
C++
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 1,}
|
|
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 2,}
|
|
class A {
|
|
public:
|
|
int x;
|
|
protected:
|
|
int y;
|
|
private:
|
|
int z;
|
|
};
|
|
|
|
A a;
|