From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2181) id 6A0473888C79; Mon, 2 Aug 2021 15:22:49 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6A0473888C79 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jonathan Wakely To: gcc-cvs@gcc.gnu.org, libstdc++-cvs@gcc.gnu.org Subject: [gcc r12-2662] libstc++: Add dg-error for additional error in C++11 mode X-Act-Checkin: gcc X-Git-Author: Jonathan Wakely X-Git-Refname: refs/heads/master X-Git-Oldrev: cac2353f8b6424980a78fe224b20b2a70e98de51 X-Git-Newrev: 2aaf69133f39f2409baa146e755a6c52eee4452f Message-Id: <20210802152249.6A0473888C79@sourceware.org> Date: Mon, 2 Aug 2021 15:22:49 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Aug 2021 15:22:49 -0000 https://gcc.gnu.org/g:2aaf69133f39f2409baa146e755a6c52eee4452f commit r12-2662-g2aaf69133f39f2409baa146e755a6c52eee4452f Author: Jonathan Wakely Date: Mon Aug 2 14:41:17 2021 +0100 libstc++: Add dg-error for additional error in C++11 mode When the comparison with a nullptr_t is ill-formed, there is an additional error for C++11 mode due to the constexpr function body being invalid. Signed-off-by: Jonathan Wakely libstdc++-v3/ChangeLog: * testsuite/20_util/tuple/comparison_operators/overloaded2.cc: Add dg-error for c++11_only target. Diff: --- libstdc++-v3/testsuite/20_util/tuple/comparison_operators/overloaded2.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/overloaded2.cc b/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/overloaded2.cc index fc3118f85a8..a66a9315902 100644 --- a/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/overloaded2.cc +++ b/libstdc++-v3/testsuite/20_util/tuple/comparison_operators/overloaded2.cc @@ -50,3 +50,4 @@ auto a = std::make_tuple(nullptr, Compares{}, 2, 'U'); auto b = a < a; // { dg-error "ordered comparison" "" { target *-*-* } 0 } +// { dg-error "not a return-statement" "" { target c++11_only } 0 }