blob: d9a25aa70e73ab3563574fcd429ac3e6d3a679c7 [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,}
3
4class A {
5public:
6 int x;
7protected:
8 int y;
9private:
10 int z;
11};
12
13A a;