2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm-only -verify %s
|
2009-12-11 10:42:07 +08:00
|
|
|
|
|
|
|
struct XPTParamDescriptor {};
|
|
|
|
struct nsXPTParamInfo {
|
|
|
|
nsXPTParamInfo(const XPTParamDescriptor& desc);
|
|
|
|
};
|
|
|
|
void a(XPTParamDescriptor *params) {
|
|
|
|
const nsXPTParamInfo& paramInfo = params[0];
|
|
|
|
}
|
2010-01-13 04:32:25 +08:00
|
|
|
|
|
|
|
// CodeGen of reference initialized const arrays.
|
|
|
|
namespace PR5911 {
|
|
|
|
template <typename T, int N> int f(const T (&a)[N]) { return N; }
|
|
|
|
int iarr[] = { 1 };
|
|
|
|
int test() { return f(iarr); }
|
|
|
|
}
|