Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
cbb7ab259d08ac5aa5a4764b48628c4bcb5110c7
/
.
/
test
/
FrontendC++
/
2006-09-27-Debug-Protection.cpp
blob: d9a25aa70e73ab3563574fcd429ac3e6d3a679c7 [
file
] [
log
] [
blame
]
// 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
;