(root)/
gcc-13.2.0/
libstdc++-v3/
testsuite/
27_io/
basic_ofstream/
open/
char/
noreplace.cc
// { dg-do run { xfail *-*-vxworks* } }

#include <ios>

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

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

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

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