diff --git a/gcc/cp/parser.c b/gcc/cp/parser.c index 274797f1879e..b0d5c69f1d6b 100644 --- a/gcc/cp/parser.c +++ b/gcc/cp/parser.c @@ -20790,6 +20790,7 @@ cp_parser_init_declarator (cp_parser* parser, { /* Handle C++17 deduction guides. */ if (!decl_specifiers->type + && !decl_specifiers->any_type_specifiers_p && ctor_dtor_or_conv_p <= 0 && cxx_dialect >= cxx17) { diff --git a/gcc/testsuite/g++.dg/cpp1z/class-deduction75.C b/gcc/testsuite/g++.dg/cpp1z/class-deduction75.C new file mode 100644 index 000000000000..52e6131c7b58 --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp1z/class-deduction75.C @@ -0,0 +1,15 @@ +// PR c++/97663 + +template struct foo {}; +template struct bar {}; +template struct baz {}; +template struct qux {}; +template struct corge {}; + +namespace N { + unsigned foo (); + signed bar (); + long baz (); + long long qux (); + short corge (); +}