Skip to content

Commit c749a3e

Browse files
authored
Rollup merge of #34404 - ollie27:concat_idents, r=alexcrichton
Mark concat_idents! unstable This is mostly just a documentation fix as I don't think stability attributes have any effect on macros. [before](https://doc.rust-lang.org/nightly/std/macro.concat_idents!.html) [after](https://ollie27.github.io/rust_doc_test/std/macro.concat_idents!.html)
2 parents c295a1c + 1cc54d0 commit c749a3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ pub mod builtin {
276276
/// // fn concat_idents!(new, fun, name) { } // not usable in this way!
277277
/// # }
278278
/// ```
279-
#[stable(feature = "rust1", since = "1.0.0")]
279+
#[unstable(feature = "concat_idents", issue = "29599")]
280280
#[macro_export]
281281
macro_rules! concat_idents {
282282
($($e:ident),*) => ({ /* compiler built-in */ })

0 commit comments

Comments
 (0)