Skip to content

Commit c7edfdd

Browse files
authored
Rollup merge of #105137 - yjhn:patch-1, r=Dylan-DPC
Add tracking issue number for `file_create_new` feature It was missing a tracking issue, so I opened one (#105135).
2 parents 46c50af + 0af5b72 commit c7edfdd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/fs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ impl File {
401401
/// Ok(())
402402
/// }
403403
/// ```
404-
#[unstable(feature = "file_create_new", issue = "none")]
404+
#[unstable(feature = "file_create_new", issue = "105135")]
405405
pub fn create_new<P: AsRef<Path>>(path: P) -> io::Result<File> {
406406
OpenOptions::new().read(true).write(true).create_new(true).open(path.as_ref())
407407
}

0 commit comments

Comments
 (0)