path assignment operator=



#include <filesystem>
#include <iostream>
                                                                                                         
using std::filesystem::path, 
    std::basic_string,
    std::move;

int main(){
    path p1;
    path p2 = p1;
    path p3 = move(p2);

    basic_string<char> str;
    path p4(str);
    p3 = p4;

    return 0;
}      
C++ Examples© 2024 TBD