Skip to content

Commit

Permalink
Mark concat_idents! unstable
Browse files Browse the repository at this point in the history
This is mostly just a documentation fix as I don't think stability
attributes have any effect on macros.
  • Loading branch information
ollie27 committed Jun 21, 2016
1 parent fe96928 commit 1cc54d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ pub mod builtin {
/// // fn concat_idents!(new, fun, name) { } // not usable in this way!
/// # }
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
#[unstable(feature = "concat_idents", issue = "29599")]
#[macro_export]
macro_rules! concat_idents {
($($e:ident),*) => ({ /* compiler built-in */ })
Expand Down

0 comments on commit 1cc54d0

Please sign in to comment.