diff options
| author | Max Wase <max.vvase@gmail.com> | 2021-05-27 16:11:54 +0300 |
|---|---|---|
| committer | Max Wase <max.vvase@gmail.com> | 2021-05-27 16:11:54 +0300 |
| commit | 2d88c52ab7173f82db4e309661fb06ebdf55b3a6 (patch) | |
| tree | 50b972f093176e88c1a7760211d8dbefd597d872 /library/std/src | |
| parent | 89c0f50b09e1f37b605f262aa8ffd3d2f4ee1c18 (diff) | |
| download | rust-2d88c52ab7173f82db4e309661fb06ebdf55b3a6.tar.gz rust-2d88c52ab7173f82db4e309661fb06ebdf55b3a6.zip | |
Tracking issue add.
Diffstat (limited to 'library/std/src')
| -rw-r--r-- | library/std/src/fs.rs | 2 | ||||
| -rw-r--r-- | library/std/src/path.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/fs.rs b/library/std/src/fs.rs index 97b5e26bd0b..8e89f5a1891 100644 --- a/library/std/src/fs.rs +++ b/library/std/src/fs.rs @@ -1026,7 +1026,7 @@ impl Metadata { /// Ok(()) /// } /// ``` - #[unstable(feature = "is_symlink", issue = "none")] + #[unstable(feature = "is_symlink", issue = "85748")] pub fn is_symlink(&self) -> bool { self.file_type().is_symlink() } diff --git a/library/std/src/path.rs b/library/std/src/path.rs index 2023a8448aa..719f28dd604 100644 --- a/library/std/src/path.rs +++ b/library/std/src/path.rs @@ -2588,7 +2588,7 @@ impl Path { /// assert_eq!(link_path.is_symlink(), true); /// assert_eq!(link_path.exists(), false); /// ``` - #[unstable(feature = "is_symlink", issue = "none")] + #[unstable(feature = "is_symlink", issue = "85748")] pub fn is_symlink(&self) -> bool { fs::symlink_metadata(self).map(|m| m.is_symlink()).unwrap_or(false) } |
