blob: 9baad94a96e76e8f97abc335e131721194d82551 [file] [log] [blame]
// RUN: clang-cc -emit-llvm-only -verify %s
struct XPTParamDescriptor {};
struct nsXPTParamInfo {
nsXPTParamInfo(const XPTParamDescriptor& desc);
};
void a(XPTParamDescriptor *params) {
const nsXPTParamInfo& paramInfo = params[0];
}