mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 17:00:58 -05:00
9 lines
240 B
C++
9 lines
240 B
C++
// 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];
|
|
}
|