Skip to content

Commit 0858ca9

Browse files
author
Yuki Okushi
authored
Rollup merge of #103901 - H4x5:fmt-arguments-as-str-tracking-issue, r=the8472
Add tracking issue for `const_arguments_as_str` Tracking issue: #103900 The original PR didn't create a tracking issue.
2 parents cd1f782 + 1d971b1 commit 0858ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ impl<'a> Arguments<'a> {
510510
/// assert_eq!(format_args!("{}", 1).as_str(), None);
511511
/// ```
512512
#[stable(feature = "fmt_as_str", since = "1.52.0")]
513-
#[rustc_const_unstable(feature = "const_arguments_as_str", issue = "none")]
513+
#[rustc_const_unstable(feature = "const_arguments_as_str", issue = "103900")]
514514
#[must_use]
515515
#[inline]
516516
pub const fn as_str(&self) -> Option<&'static str> {

0 commit comments

Comments
 (0)