about summary refs log tree commit diff
path: root/library/std/src/ffi
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2025-09-14 10:30:29 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2025-09-26 18:41:32 -0400
commit4e9716fbc5fb0f85d838ee9350ade2be5c2a6201 (patch)
treebd46c3e45949b5af89d2a8c436e7883c32f6815c /library/std/src/ffi
parent54a8a1db604e4caff93e26e167ad4a6fde9f0681 (diff)
downloadrust-4e9716fbc5fb0f85d838ee9350ade2be5c2a6201.tar.gz
rust-4e9716fbc5fb0f85d838ee9350ade2be5c2a6201.zip
Update CURRENT_RUSTC_VERSION post-bump
Diffstat (limited to 'library/std/src/ffi')
-rw-r--r--library/std/src/ffi/os_str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/ffi/os_str.rs b/library/std/src/ffi/os_str.rs
index a39565d2159..6c098034eea 100644
--- a/library/std/src/ffi/os_str.rs
+++ b/library/std/src/ffi/os_str.rs
@@ -137,7 +137,7 @@ impl OsString {
     #[stable(feature = "rust1", since = "1.0.0")]
     #[must_use]
     #[inline]
-    #[rustc_const_stable(feature = "const_pathbuf_osstring_new", since = "CURRENT_RUSTC_VERSION")]
+    #[rustc_const_stable(feature = "const_pathbuf_osstring_new", since = "1.91.0")]
     pub const fn new() -> OsString {
         OsString { inner: Buf::from_string(String::new()) }
     }