use typed_path::Utf8PlatformPath;
fn main() {
let path = Utf8PlatformPath::new("some/path");
assert_eq!(path.has_unix_encoding(), cfg!(unix));
assert_eq!(path.has_windows_encoding(), cfg!(windows));
let _ = path.with_unix_encoding();
let _ = path.with_windows_encoding();
}