This commit is contained in:
bendn 2025-09-04 14:06:31 +07:00
parent 033c0a4742
commit f19da67ed7
No known key found for this signature in database
GPG Key ID: 0D9D3A2A3B2A93D6

View File

@ -2526,3 +2526,9 @@ fn normalize_lexically() {
check_err(r"\\?\UNC\server\share\a\..\..");
}
}
#[test]
/// See issue#146183
fn compare_path_to_str() {
assert!(&PathBuf::from("x") == "x");
}