1 // Copyright (C) 2020-2025 Free Software Foundation, Inc.
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)
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.
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/>.
18 // { dg-do run { target c++20 } }
21 #include <testsuite_hooks.h>
22 #include <testsuite_iterators.h>
24 using __gnu_test::test_output_range
;
26 namespace ranges
= std::ranges
;
28 template<typename Out
, auto value
>
34 ranges::fill(x
, value
);
35 VERIFY( ranges::count(x
, static_cast<Out
>(value
)) == ranges::size(x
) );
40 test_output_range
<Out
> rx(x
);
41 ranges::fill(x
, value
);
42 VERIFY( ranges::count(x
, static_cast<Out
>(value
)) == ranges::size(x
) );
54 test01
<char, -10000L>();
56 test01
<signed char, 'a'>();
57 test01
<signed char, 100>();
58 test01
<signed char, 150>();
59 test01
<signed char, 300>();
61 test01
<unsigned char, 'a'>();
62 test01
<unsigned char, 100>();
63 test01
<unsigned char, 150>();
64 test01
<unsigned char, 300>();
68 test01
<int, (signed char)'a'>();
69 test01
<int, (unsigned char)'a'>();
71 test01
<volatile int, 'a'>();
72 test01
<volatile int, 'a'>();
73 test01
<volatile int, 500>();
74 test01
<volatile char, 500>();