Sign in
llvm
/
clang
/
a5728872c7702ddd09537c95bc3cbd20e1f2fb09
/
.
/
test
/
CodeGenCXX
/
reference-init.cpp
blob: 1bfb28a66a03c43192de90de18d8dc8106e25902 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm-only -verify %s
struct
XPTParamDescriptor
{};
struct
nsXPTParamInfo
{
nsXPTParamInfo
(
const
XPTParamDescriptor
&
desc
);
};
void
a
(
XPTParamDescriptor
*
params
)
{
const
nsXPTParamInfo
&
paramInfo
=
params
[
0
];
}