Skip to content

Commit 0af5b72

Browse files
authored
Add tracking issue for file_create_new
1 parent 9c0bc30 commit 0af5b72

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)