Skip to content

Commit 1cc54d0

Browse files
committed
Mark concat_idents! unstable
This is mostly just a documentation fix as I don't think stability attributes have any effect on macros.
1 parent fe96928 commit 1cc54d0

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)