1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 11:33:24 +02:00
llvm-mirror/test/FrontendC++/2006-09-27-Debug-Protection.cpp
Devang Patel 91736025e1 Re-enable test.
llvm-svn: 60968
2008-12-12 22:42:35 +00:00

13 lines
198 B
C++

// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 1,}
// RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep {i32 2,}
class A {
public:
int x;
protected:
int y;
private:
int z;
};
A a;