Implement concat_bytes!

The tracking issue for this is #87555.
This commit is contained in:
Smitty
2021-07-29 13:00:55 -04:00
committed by Mark Rousskov
parent 0fb1c371d4
commit eb56693a37
12 changed files with 421 additions and 0 deletions

View File

@@ -60,6 +60,15 @@ pub use crate::{
option_env, stringify, trace_macros,
};
#[unstable(
feature = "concat_bytes",
issue = "87555",
reason = "`concat_bytes` is not stable enough for use and is subject to change"
)]
#[cfg(not(bootstrap))]
#[doc(no_inline)]
pub use crate::concat_bytes;
#[unstable(
feature = "asm",
issue = "72016",