]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/24_iterators/range_access/range_access_cpp20_neg.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 24_iterators / range_access / range_access_cpp20_neg.cc
CommitLineData
a945c346 1// Copyright (C) 2019-2024 Free Software Foundation, Inc.
4ef5bbd8
JW
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
762baaf0 18// { dg-do compile { target c++20 } }
4ef5bbd8
JW
19
20#include <iterator>
21
22void
23test01()
24{
164abd67
JW
25 struct C { unsigned size() { return 0u; } };
26 C c;
27 std::ssize(c); // { dg-error "no matching function" }
4ef5bbd8 28}
164abd67 29// { dg-error "discards qualifiers" "" { target *-*-* } 0 }
4ef5bbd8
JW
30
31void
32test02()
33{
164abd67
JW
34 struct C { bool size() { return false; } };
35 C c;
36 std::ssize(c); // { dg-error "no matching function" }
4ef5bbd8 37}
164abd67 38// { dg-error "incomplete type .*make_signed.*bool" "" { target *-*-* } 0 }
4ef5bbd8
JW
39
40void
41test03()
42{
164abd67
JW
43 struct S { };
44 struct C { S size() { return {}; } };
45 C c;
46 std::ssize(c); // { dg-error "no matching function" }
4ef5bbd8 47}
1d2f07ed 48// { dg-error "incomplete type .*make_signed.*S" "" { target *-*-* } 0 }