mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-12 12:33:17 +00:00
14 lines
210 B
C++
14 lines
210 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,}
|
|
// XFAIL: *
|
|
class A {
|
|
public:
|
|
int x;
|
|
protected:
|
|
int y;
|
|
private:
|
|
int z;
|
|
};
|
|
|
|
A a;
|