blob: cb09bd0a974b58c2d4aeabbc76866601d5ec2ccb [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// 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,}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003class A {
4public:
5 int x;
6protected:
7 int y;
8private:
9 int z;
10};
11
12A a;