(root)/
gcc-13.2.0/
libstdc++-v3/
testsuite/
27_io/
filesystem/
path/
native/
conv_c++23.cc
// { dg-options "-std=gnu++23" }
// { dg-do compile { target c++23 } }

#include <filesystem>

void
test01()
{
  using std::filesystem::path;
  path p;
  path::string_type s(p);
}