Commit 2de6c675 by Jason Merrill Committed by Jason Merrill

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
parent da3933ba
2008-11-19 Jason Merrill <jason@redhat.com> 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 PR c++/37256
* pt.c (instantiate_decl): Don't require a definition of * pt.c (instantiate_decl): Don't require a definition of
a template that is explicitly instantiated 'extern'. a template that is explicitly instantiated 'extern'.
......
...@@ -5264,7 +5264,7 @@ cp_parser_pseudo_destructor_name (cp_parser* parser, ...@@ -5264,7 +5264,7 @@ cp_parser_pseudo_destructor_name (cp_parser* parser,
/*typename_keyword_p=*/false, /*typename_keyword_p=*/false,
/*check_dependency_p=*/true, /*check_dependency_p=*/true,
/*type_p=*/false, /*type_p=*/false,
/*is_declaration=*/true) /*is_declaration=*/false)
!= NULL_TREE); != NULL_TREE);
/* Now, if we saw a nested-name-specifier, we might be doing the /* Now, if we saw a nested-name-specifier, we might be doing the
second production. */ second production. */
......
2008-11-19 Jason Merrill <jason@redhat.com> 2008-11-19 Jason Merrill <jason@redhat.com>
PR c++/37563
* g++.dg/template/pseudodtor5.C: New test.
PR c++/37256 PR c++/37256
* g++.dg/cpp0x/extern_template-3.C: New test. * g++.dg/cpp0x/extern_template-3.C: New test.
......
// 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();
}
};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment