//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // T5 setprecision(int n); #include #include #include #include #include "test_macros.h" template struct testbuf : public std::basic_streambuf { testbuf() {} }; int main(int, char**) { { testbuf sb; std::istream is(&sb); is >> std::setprecision(10); assert(is.precision() == 10); } { testbuf sb; std::ostream os(&sb); os << std::setprecision(10); assert(os.precision() == 10); } { testbuf sb; std::wistream is(&sb); is >> std::setprecision(10); assert(is.precision() == 10); } { testbuf sb; std::wostream os(&sb); os << std::setprecision(10); assert(os.precision() == 10); } return 0; }