Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
d033c77ea390cd88277ae40367f819e51df93e66
/
.
/
llvm
/
test
/
C++Frontend
/
2006-09-27-Debug-Protection.cpp
blob: 87bc0d595adfd3e51412a94645f016058e758e22 [
file
] [
log
] [
blame
]
// XFAIL: llvmgcc3
// 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
;