Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
b05969e2f71269cbf5f30e8312348c88cca53fb6
/
.
/
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
;