Files
boost/libs/filesystem/test/cf_path_nullptr_test.cpp
2025-02-02 19:53:39 +10:30

16 lines
334 B
C++

// Copyright 2023 Andrey Semashev.
//
// Distributed under the Boost Software License, Version 1.0.
//
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#include <boost/filesystem/path.hpp>
#include <boost/config.hpp>
int main()
{
boost::filesystem::path p(nullptr);
p = nullptr;
}