aboutsummaryrefslogtreecommitdiff
path: root/test/FrontendC++/2006-09-27-Debug-Protection.cpp
blob: 46ffe7c550c76a184a3df152d2ea5ebcab81a4c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 1,}
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 2,}
// XFAIL: *
class A {
public:
  int x;
protected:
  int y;
private:
  int z;
};

A a;