Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
901b5750b2af095bb0e359f4d2c3debef3ad57e6
/
.
/
test
/
FrontendC++
/
2006-09-27-Debug-Protection.cpp
blob: cb09bd0a974b58c2d4aeabbc76866601d5ec2ccb [
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
;