From 1d971b1322a91d7f06f564527594367b308f4f18 Mon Sep 17 00:00:00 2001 From: Sky Date: Wed, 2 Nov 2022 16:24:16 -0400 Subject: [PATCH] Add tracking issue for `const_arguments_as_str` --- library/core/src/fmt/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/fmt/mod.rs b/library/core/src/fmt/mod.rs index c8d2855056757..9474864ef16ee 100644 --- a/library/core/src/fmt/mod.rs +++ b/library/core/src/fmt/mod.rs @@ -510,7 +510,7 @@ impl<'a> Arguments<'a> { /// assert_eq!(format_args!("{}", 1).as_str(), None); /// ``` #[stable(feature = "fmt_as_str", since = "1.52.0")] - #[rustc_const_unstable(feature = "const_arguments_as_str", issue = "none")] + #[rustc_const_unstable(feature = "const_arguments_as_str", issue = "103900")] #[must_use] #[inline] pub const fn as_str(&self) -> Option<&'static str> {