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