blob: 2a70a0f5b45783381a30f31dc5442cc021ddc6cd [file] [log] [blame]
// RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 1,}
// RUN: %llvmgxx -O0 -S -g -o - %s | grep {i32 2,}
class A {
public:
int x;
protected:
int y;
private:
int z;
};
A a;