Fixed some bugs.
[llvm/zpu.git] / test / FrontendC++ / 2006-09-27-Debug-Protection.cpp
blobcb09bd0a974b58c2d4aeabbc76866601d5ec2ccb
1 // RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 1,}
2 // RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 2,}
3 class A {
4 public:
5 int x;
6 protected:
7 int y;
8 private:
9 int z;
12 A a;