From 4330268181c3de234457138f23bb821afd0c181e Mon Sep 17 00:00:00 2001 From: Martin Habovstiak Date: Tue, 16 Mar 2021 08:41:14 +0100 Subject: [PATCH] Filled tracking issue for path_try_exists This adds the ID of the tracking issue to the feature. --- library/std/src/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/path.rs b/library/std/src/path.rs index 4dd37f76efc..e5e4ccac921 100644 --- a/library/std/src/path.rs +++ b/library/std/src/path.rs @@ -2488,7 +2488,7 @@ impl Path { /// ``` // FIXME: stabilization should modify documentation of `exists()` to recommend this method // instead. - #[unstable(feature = "path_try_exists", issue = "none")] + #[unstable(feature = "path_try_exists", issue = "83186")] #[inline] pub fn try_exists(&self) -> io::Result { match fs::metadata(self) {