re PR c++/37563 (Trouble calling qualified member function)

PR c++/37563
        * parser.c (cp_parser_pseudo_destructor_name): A pseudo-destructor
        name is not a declaration.

From-SVN: r142015
This commit is contained in:
Jason Merrill 2008-11-19 14:36:38 -05:00 committed by Jason Merrill
parent da3933ba83
commit 2de6c675d3
4 changed files with 31 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2008-11-19 Jason Merrill <jason@redhat.com>
PR c++/37563
* parser.c (cp_parser_pseudo_destructor_name): A pseudo-destructor
name is not a declaration.
PR c++/37256
* pt.c (instantiate_decl): Don't require a definition of
a template that is explicitly instantiated 'extern'.

View File

@ -5264,7 +5264,7 @@ cp_parser_pseudo_destructor_name (cp_parser* parser,
/*typename_keyword_p=*/false,
/*check_dependency_p=*/true,
/*type_p=*/false,
/*is_declaration=*/true)
/*is_declaration=*/false)
!= NULL_TREE);
/* Now, if we saw a nested-name-specifier, we might be doing the
second production. */

View File

@ -1,5 +1,8 @@
2008-11-19 Jason Merrill <jason@redhat.com>
PR c++/37563
* g++.dg/template/pseudodtor5.C: New test.
PR c++/37256
* g++.dg/cpp0x/extern_template-3.C: New test.

View File

@ -0,0 +1,23 @@
// PR c++/37563
struct A {};
template<int> struct Traits
{
typedef void X;
};
template<> struct Traits<0>
{
typedef A X;
};
template<int N> struct B
{
typedef typename Traits<N>::X Y;
void foo(Y y)
{
y.Y::A::~A();
}
};