PR c++/27808
* parser.c (cp_parser_decl_specifier_seq): Issue errors about
"friend" specifiers that do not appear in class scopes.
PR c++/27808
* g++.dg/parse/friend6.C: New test.
From-SVN: r114259
2006-05-30 Mark Mitchell <mark@codesourcery.com>
+ PR c++/27808
+ * parser.c (cp_parser_decl_specifier_seq): Issue errors about
+ "friend" specifiers that do not appear in class scopes.
+
PR c++/27803
* class.c (check_bitfield_decl): Ensure that all bitfields have
integral type.
/* decl-specifier:
friend */
case RID_FRIEND:
- ++decl_specs->specs[(int) ds_friend];
- /* Consume the token. */
- cp_lexer_consume_token (parser->lexer);
+ if (!at_class_scope_p ())
+ {
+ error ("%<friend%> used outside of class");
+ cp_lexer_purge_token (parser->lexer);
+ }
+ else
+ {
+ ++decl_specs->specs[(int) ds_friend];
+ /* Consume the token. */
+ cp_lexer_consume_token (parser->lexer);
+ }
break;
/* function-specifier:
+2006-05-30 Mark Mitchell <mark@codesourcery.com>
+
+ PR c++/27808
+ * g++.dg/parse/friend6.C: New test.
+
2006-05-30 Asher Langton <langton2@llnl.gov>
* gfortran.dg/cray_pointers_7.f90: New test.
--- /dev/null
+// PR c++/27808
+
+template<typename T> friend void T::foo; // { dg-error "friend|invalid" }