mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
21 lines
490 B
Rust
21 lines
490 B
Rust
//@ known-bug: #121063
|
|
//@ compile-flags: -Zpolymorphize=on --edition=2021 -Zinline-mir=yes
|
|
|
|
use std::{
|
|
fmt, ops,
|
|
path::{Component, Path, PathBuf},
|
|
};
|
|
|
|
pub struct AbsPathBuf(PathBuf);
|
|
|
|
impl TryFrom<PathBuf> for AbsPathBuf {
|
|
type Error = PathBuf;
|
|
fn try_from(path: impl AsRef<Path>) -> Result<AbsPathBuf, PathBuf> {}
|
|
}
|
|
|
|
impl TryFrom<&str> for AbsPathBuf {
|
|
fn try_from(path: &str) -> Result<AbsPathBuf, PathBuf> {
|
|
AbsPathBuf::try_from(PathBuf::from(path))
|
|
}
|
|
}
|