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:
parent
7805032d9a
commit
cae7d26460
|
@ -1,5 +1,8 @@
|
||||||
2013-03-16 Jason Merrill <jason@redhat.com>
|
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
|
PR c++/52374
|
||||||
* pt.c (tsubst_qualified_id): Use current_nonlambda_class_type.
|
* pt.c (tsubst_qualified_id): Use current_nonlambda_class_type.
|
||||||
|
|
||||||
|
|
|
@ -12818,7 +12818,7 @@ cp_parser_template_id (cp_parser *parser,
|
||||||
error_at (token->location, "parse error in template argument list");
|
error_at (token->location, "parse error in template argument list");
|
||||||
}
|
}
|
||||||
|
|
||||||
pop_deferring_access_checks ();
|
pop_to_parent_deferring_access_checks ();
|
||||||
return template_id;
|
return template_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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" }
|
Loading…
Reference in New Issue