]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/23_containers/bitset/cons/16020.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / 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
PC
17
18#include <debug/bitset>
19#include <testsuite_hooks.h>
20
21// libstdc++/16020
22void test01()
23{
7ec4a5ce 24 using __gnu_debug::bitset;
ab3d88be
PC
25
26 bitset<5> b(7);
27 bitset<5> c;
28
29 bitset<5> bb(b);
30 c = bb;
31
32 VERIFY( bb == b );
33 VERIFY( c == bb );
34}
35
36int main()
37{
38 test01();
39 return 0;
40}