From: Jason Merrill Date: Tue, 9 Jul 2013 17:55:24 +0000 (-0400) Subject: re PR c++/57831 (pointer to member function inaccessible through using statement... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d0859d8946995f64be3b422b1c54e9a5c78905e;p=gcc.git re PR c++/57831 (pointer to member function inaccessible through using statement (or ICE)) PR c++/57831 * pt.c (tsubst_copy): Handle USING_DECL. From-SVN: r200839 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9262813ef2e..aa6bdb1f339 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2013-07-09 Jason Merrill + + PR c++/57831 + * pt.c (tsubst_copy): Handle USING_DECL. + 2013-07-09 Marc Glisse PR c++/53094 diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 26d5a1c5daa..23229a98d36 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -12552,6 +12552,9 @@ tsubst_copy (tree t, tree args, tsubst_flags_t complain, tree in_decl) case TYPE_DECL: return tsubst (t, args, complain, in_decl); + case USING_DECL: + t = DECL_NAME (t); + /* Fall through. */ case IDENTIFIER_NODE: if (IDENTIFIER_TYPENAME_P (t)) { diff --git a/gcc/testsuite/g++.dg/template/using23.C b/gcc/testsuite/g++.dg/template/using23.C new file mode 100644 index 00000000000..abb90de4cd8 --- /dev/null +++ b/gcc/testsuite/g++.dg/template/using23.C @@ -0,0 +1,15 @@ +// PR c++/57831 + +struct A { + void f(); +}; +template struct B : T { + typedef T base; + using base::f; // If I write "using B::f" it's ok + void g( ) { + B::f(); // This is OK as expected + (this->*&T::f)(); // This is also OK + (this->*&B::f)(); // This causes error + } +}; +template struct B< A >;