]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/bitset/cons/16020.cc
libstdc++: Disable hosted-only tests [PR103626]
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / bitset / cons / 16020.cc
CommitLineData
7adcbafe 1// Copyright (C) 2004-2022 Free Software Foundation, Inc.
ab3d88be
PC
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
748086b7 6// Free Software Foundation; either version 3, or (at your option)
ab3d88be
PC
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
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
ab3d88be 17
7cc9022f
AA
18// { dg-require-effective-target hosted }
19
ab3d88be
PC
20#include <debug/bitset>
21#include <testsuite_hooks.h>
22
23// libstdc++/16020
24void test01()
25{
7ec4a5ce 26 using __gnu_debug::bitset;
ab3d88be
PC
27
28 bitset<5> b(7);
29 bitset<5> c;
30
31 bitset<5> bb(b);
32 c = bb;
33
34 VERIFY( bb == b );
35 VERIFY( c == bb );
36}
37
38int main()
39{
40 test01();
41 return 0;
42}