summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/27_io/basic_ofstream/open/wchar_t/noreplace.cc
blob: f0425cdab3d23700a3232999409671acb8b8a4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// { dg-do run }

#include <version>

#if __cplusplus >= 202207L
#ifndef __cpp_lib_ios_noreplace
# error "Feature-test macro for ios::noreplace missing in <version>"
#elif __cpp_lib_ios_noreplace < 202207L
# error "Feature-test macro for ios::noreplace has wrong value in <version>"
#endif
#endif

#include <fstream>
#include <testsuite_hooks.h>

int main()
{
#if __cpp_lib_ios_noreplace
  std::wios::openmode noreplace = std::wios::noreplace;
#else
  std::wios::openmode noreplace = std::wios::__noreplace;
#endif

  std::wofstream of("noreplace");
  VERIFY( of.is_open() );
  of.close();
  of.open("noreplace", noreplace);
  VERIFY( ! of.is_open() );
}