diff options
| author | Yuki Okushi <huyuumi.dev+love@gmail.com> | 2022-11-20 13:15:58 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-20 13:15:58 +0900 |
| commit | 0858ca97da2da8b8a7fbfc422e59bd87731b5060 (patch) | |
| tree | d298d1b68c58a82877af209c26b7935580f6c78c | |
| parent | cd1f782b742f2c83d91648efae35dfd0d79cec08 (diff) | |
| parent | 1d971b1322a91d7f06f564527594367b308f4f18 (diff) | |
| download | rust-0858ca97da2da8b8a7fbfc422e59bd87731b5060.tar.gz rust-0858ca97da2da8b8a7fbfc422e59bd87731b5060.zip | |
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.
| -rw-r--r-- | library/core/src/fmt/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/fmt/mod.rs b/library/core/src/fmt/mod.rs index 2adc968bd46..48b6177434b 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> { |
