Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
9282688a296b306c4ae2d115f55101647056d1da
/
.
/
test
/
CodeGenCXX
/
constructor-init-reference.cpp
blob: 5e751597651885b3e2b2c77329c1f8996d4afd94 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
int
x
;
struct
A
{
int
&
y
;
A
()
:
y
(
x
)
{}
};
A z
;