C++程序  |  13行  |  176 B

// 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;