llvm-6502/test/C++Frontend/2006-09-27-Debug-Protection.cpp
2006-09-27 16:55:19 +00:00

14 lines
204 B
C++

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