diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2021-08-02 14:41:17 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2021-08-02 16:22:24 +0100 |
commit | 2aaf69133f39f2409baa146e755a6c52eee4452f (patch) | |
tree | ba1100dda663708e27c175926b1e466b8cdbda1a | |
parent | cac2353f8b6424980a78fe224b20b2a70e98de51 (diff) | |
download | gcc-2aaf69133f39f2409baa146e755a6c52eee4452f.tar.gz |
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 <jwakely@redhat.com>
libstdc++-v3/ChangeLog:
* testsuite/20_util/tuple/comparison_operators/overloaded2.cc:
Add dg-error for c++11_only target.
-rw-r--r-- | libstdc++-v3/testsuite/20_util/tuple/comparison_operators/overloaded2.cc | 1 |
1 files changed, 1 insertions, 0 deletions
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 } |