[flang][OpenMP] Use range-for to iterate over SymbolSourceMap, NFC
[llvm-project.git] / libcxx / test / std / utilities / template.bitset / bitset.operators / stream_out.pass.cpp
blobdfdb9fe95851639651b52a0a08c9253996f8a09c
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // UNSUPPORTED: no-localization
11 // test:
13 // template <class charT, class traits, size_t N>
14 // basic_ostream<charT, traits>&
15 // operator<<(basic_ostream<charT, traits>& os, const bitset<N>& x);
17 #include <bitset>
18 #include <sstream>
19 #include <cassert>
21 #include "test_macros.h"
23 int main(int, char**)
25 std::ostringstream os;
26 std::bitset<8> b(0x5A);
27 os << b;
28 assert(os.str() == "01011010");
30 return 0;