From: jason Date: Fri, 13 Dec 2013 03:58:48 +0000 (+0000) Subject: PR c++/58954 X-Git-Tag: upstream/4.9.2~2284 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=174a4f45f00e2647155c2e791f9c841eb657af4b;p=platform%2Fupstream%2Flinaro-gcc.git PR c++/58954 * pt.c (resolve_overloaded_unification): Use instantiate_template. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@205952 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index ca4a321..59c1d53 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2013-12-12 Jason Merrill + + PR c++/58954 + * pt.c (resolve_overloaded_unification): Use instantiate_template. + 2013-12-12 Jakub Jelinek PR c++/58627 diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 2c64a71..d566afd 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -16407,7 +16407,7 @@ resolve_overloaded_unification (tree tparms, if (subargs != error_mark_node && !any_dependent_template_arguments_p (subargs)) { - elem = tsubst (TREE_TYPE (fn), subargs, tf_none, NULL_TREE); + elem = TREE_TYPE (instantiate_template (fn, subargs, tf_none)); if (try_one_overload (tparms, targs, tempargs, parm, elem, strict, sub_strict, addr_p, explain_p) && (!goodfn || !same_type_p (goodfn, elem))) diff --git a/gcc/testsuite/g++.dg/cpp0x/access02.C b/gcc/testsuite/g++.dg/cpp0x/access02.C new file mode 100644 index 0000000..74960a6 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/access02.C @@ -0,0 +1,39 @@ +// PR c++/58954 +// { dg-require-effective-target c++11 } + +template +T&& declval(); + +template +struct foo_argument +{ + template + static Arg test(Ret (C::*)(Arg)); + + typedef decltype(test(&T::template foo<>)) type; +}; + +template +struct dependent { typedef T type; }; + +template +struct base +{ + template + auto foo(int i) -> decltype(declval< + typename dependent::type + >().foo_impl(i)); +}; + +struct derived : base +{ + friend struct base; +private: + int foo_impl(int i); +}; + +int main() +{ + foo_argument::type var = 0; + return var; +}