[NFC][Py Reformat] Reformat python files in libcxx/libcxxabi
[llvm-project.git] / libcxx / test / std / depr / depr.ios.members / open_mode.pass.cpp
blob57a88c957673a504d30f09c41ed039a5b8c5f36b
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 // <ios>
11 // class ios_base
12 // {
13 // public:
14 // typedef T2 open_mode;
15 // };
17 // These members were removed for C++17
19 #include "test_macros.h"
20 #include <strstream>
21 #include <cassert>
23 int main(int, char**)
25 #if TEST_STD_VER <= 14
26 std::strstream::open_mode b = std::strstream::app;
27 assert(b == std::ios::app);
28 #endif
30 return 0;