From 11678eb3835f050414cc7e4a26ae6b9461e2e90d Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Thu, 16 May 2013 11:03:25 -0400 Subject: [PATCH] re PR c++/57279 ([C++11] alias declaration fails to declare function types with cv-qualifiers) PR c++/57279 * decl.c (grokdeclarator): Allow member function qualifiers in TYPENAME context. From-SVN: r198975 --- gcc/cp/ChangeLog | 6 ++++++ gcc/cp/decl.c | 6 ++++-- gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C | 9 +++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3609fa5e675..72ec0f0dba4 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2013-05-16 Jason Merrill + + PR c++/57279 + * decl.c (grokdeclarator): Allow member function qualifiers in + TYPENAME context in C++11 mode. + 2013-05-16 Dodji Seketeli PR c++/56782 - Regression with empty pack expansions diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index b16472f6000..a4f686a5767 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -10295,8 +10295,10 @@ grokdeclarator (const cp_declarator *declarator, if (ctype) type = build_memfn_type (type, ctype, memfn_quals, rqual); - /* Core issue #547: need to allow this in template type args. */ - else if (template_type_arg && TREE_CODE (type) == FUNCTION_TYPE) + /* Core issue #547: need to allow this in template type args. + Allow it in general in C++11 for alias-declarations. */ + else if ((template_type_arg || cxx_dialect >= cxx11) + && TREE_CODE (type) == FUNCTION_TYPE) type = apply_memfn_quals (type, memfn_quals, rqual); else error ("invalid qualifiers on non-member function type"); diff --git a/gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C b/gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C new file mode 100644 index 00000000000..f412b302d06 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/alias-decl-35.C @@ -0,0 +1,9 @@ +// PR c++/57279 +// { dg-require-effective-target c++11 } + +typedef void fc1() const; // OK +typedef void frr1() &&; // OK +typedef void fcr1() const &; +using fc2 = void() const; // #4 +using frr2 = void() &&; // OK +using fcr2 = void() const &; // #6 -- 2.30.2