From 0968f7da26221bfc9203cd557c8636c0a0f24018 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Mon, 27 Jan 2020 17:55:14 -0500 Subject: [PATCH] c++: Function declared with typedef with eh-specification. We just need to handle the exception specification like other properties of a function typedef. PR c++/90731 * decl.c (grokdeclarator): Propagate eh spec from typedef. --- gcc/cp/ChangeLog | 5 +++++ gcc/cp/decl.c | 1 + gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C | 6 ++++++ 3 files changed, 12 insertions(+) create mode 100644 gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3d5c9a14492..259b0c717b9 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2020-01-28 Jason Merrill + + PR c++/90731 + * decl.c (grokdeclarator): Propagate eh spec from typedef. + 2020-01-28 Martin Liska PR c++/92440 diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index e55de5dd53d..6ad558eef9e 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -12848,6 +12848,7 @@ grokdeclarator (const cp_declarator *declarator, memfn_quals |= type_memfn_quals (type); rqual = type_memfn_rqual (type); type_quals = TYPE_UNQUALIFIED; + raises = TYPE_RAISES_EXCEPTIONS (type); } } diff --git a/gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C b/gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C new file mode 100644 index 00000000000..dd9924ff1b1 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C @@ -0,0 +1,6 @@ +// PR c++/90731 +// { dg-do compile { target c++17 } } + +typedef void T() noexcept(true); +T t; +void t() noexcept(true); -- 2.30.2