Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
19c30c00e5e01e4608a43c7deb504f343f09e46d
/
.
/
test
/
CodeGenCXX
/
const-init.cpp
blob: 427ba537299280e06c8ed77339134c55348d5a80 [
file
] [
log
] [
blame
]
// RUN: clang-cc -verify -emit-llvm -o %t %s
int
a
=
10
;
int
&
ar
=
a
;
void
f
();
void
(&
fr
)()
=
f
;
struct
S
{
int
&
a
;
};
S s
=
{
a
};