hanchenye-llvm-project/llvm/test/FrontendC++/2006-09-27-Debug-Protection...

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;