* decl.c (grokdeclarator): Fix value assigned to typespec_loc, use min_location.
/testsuite 2018-05-14 Paolo Carlini <paolo.carl...@oracle.com> * g++.dg/diagnostic/trailing1.C: New. --- gcc/cp/decl.c | 4 ++-- gcc/testsuite/g++.dg/diagnostic/trailing1.C | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 gcc/testsuite/g++.dg/diagnostic/trailing1.C
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index a776f8fcd98..ec81888c1f1 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -10424,8 +10424,8 @@ grokdeclarator (const cp_declarator *declarator, location_t typespec_loc = smallest_type_quals_location (type_quals, declspecs->locations); - if (typespec_loc == UNKNOWN_LOCATION) - typespec_loc = declspecs->locations[ds_type_spec]; + typespec_loc = min_location (typespec_loc, + declspecs->locations[ds_type_spec]); if (typespec_loc == UNKNOWN_LOCATION) typespec_loc = input_location; diff --git a/gcc/testsuite/g++.dg/diagnostic/trailing1.C b/gcc/testsuite/g++.dg/diagnostic/trailing1.C new file mode 100644 index 00000000000..369781e56d5 --- /dev/null +++ b/gcc/testsuite/g++.dg/diagnostic/trailing1.C @@ -0,0 +1,5 @@ +// { dg-do compile { target c++11 } } + +int const foo1() -> double; // { dg-error "1:.foo1. function with trailing return type" } +int volatile foo2() -> double; // { dg-error "1:.foo2. function with trailing return type" } +int const volatile foo3() -> double; // { dg-error "1:.foo3. function with trailing return type" }