re PR c++/45917 (inaccessible types allowed as template argument in nested-name-specifier)

PR c++/45917
	* parser.c (cp_parser_template_id): Don't forget access checks.

From-SVN: r196744
This commit is contained in:
Jason Merrill 2013-03-16 22:39:22 -04:00 committed by Jason Merrill
parent 7805032d9a
commit cae7d26460
3 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2013-03-16 Jason Merrill <jason@redhat.com>
PR c++/45917
* parser.c (cp_parser_template_id): Don't forget access checks.
PR c++/52374
* pt.c (tsubst_qualified_id): Use current_nonlambda_class_type.

View File

@ -12818,7 +12818,7 @@ cp_parser_template_id (cp_parser *parser,
error_at (token->location, "parse error in template argument list");
}
pop_deferring_access_checks ();
pop_to_parent_deferring_access_checks ();
return template_id;
}

View File

@ -0,0 +1,6 @@
// PR c++/45917
template < typename T >
struct A { static int i; };
class B { typedef int X; }; // { dg-error "private" }
void f() { A<B::X>::i = 0; } // { dg-error "this context" }