Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
e45aa073431f94fc0dafb56477aec2068ba2880f
/
.
/
test
/
CodeGenCXX
/
constructor-init-reference.cpp
blob: 5e751597651885b3e2b2c77329c1f8996d4afd94 [
file
] [
log
] [
blame
]
Shih-wei Liao
ea28516
2010-06-04 12:34:56 -0700
[
diff
] [
blame
]
1
// RUN: %clang_cc1 -emit-llvm -o - %s | grep "store i32\* @x, i32\*\*"
2
3
int
x
;
4
struct
A
{
5
int
&
y
;
6
A
()
:
y
(
x
)
{}
7
};
8
A z
;
9