Make delegating initializers use a similar codepath to base initializers in dependent contexts. PR12890.

llvm-svn: 157136
This commit is contained in:
Eli Friedman 2012-05-19 23:35:23 +00:00
parent a34a69ce0c
commit a9e9ebcfb5
2 changed files with 28 additions and 0 deletions

View File

@ -2234,6 +2234,16 @@ Sema::BuildDelegatingInitializer(TypeSourceInfo *TInfo, Expr *Init,
if (DelegationInit.isInvalid())
return true;
// If we are in a dependent context, template instantiation will
// perform this type-checking again. Just save the arguments that we
// received in a ParenListExpr.
// FIXME: This isn't quite ideal, since our ASTs don't capture all
// of the information that we have about the base
// initializer. However, deconstructing the ASTs is a dicey process,
// and this approach is far more likely to get the corner cases right.
if (CurContext->isDependentContext())
DelegationInit = Owned(Init);
return new (Context) CXXCtorInitializer(Context, TInfo, InitRange.getBegin(),
DelegationInit.takeAs<Expr>(),
InitRange.getEnd());

View File

@ -29,3 +29,21 @@ namespace PR10457 {
Foo f(1, 1);
}
}
namespace PR12890 {
class Document
{
public:
Document() = default;
template <class T>
explicit
Document(T&& t) : Document()
{
}
};
void f()
{
Document d(1);
}
}