@@ -39,12 +39,28 @@ pub use crate::result::Result::{self, Err, Ok};
3939#[ allow( deprecated) ]
4040#[ doc( no_inline) ]
4141pub use core:: prelude:: v1:: {
42- asm , assert, cfg, column, compile_error, concat, concat_idents, env, file, format_args,
43- format_args_nl, global_asm , include, include_bytes, include_str, line, llvm_asm, log_syntax,
44- module_path , option_env, stringify, trace_macros, Clone , Copy , Debug , Default , Eq , Hash , Ord ,
45- PartialEq , PartialOrd ,
42+ assert, cfg, column, compile_error, concat, concat_idents, env, file, format_args,
43+ format_args_nl, include, include_bytes, include_str, line, llvm_asm, log_syntax, module_path ,
44+ option_env, stringify, trace_macros, Clone , Copy , Debug , Default , Eq , Hash , Ord , PartialEq ,
45+ PartialOrd ,
4646} ;
4747
48+ #[ unstable(
49+ feature = "asm" ,
50+ issue = "72016" ,
51+ reason = "inline assembly is not stable enough for use and is subject to change"
52+ ) ]
53+ #[ doc( no_inline) ]
54+ pub use core:: prelude:: v1:: asm;
55+
56+ #[ unstable(
57+ feature = "global_asm" ,
58+ issue = "35119" ,
59+ reason = "`global_asm!` is not stable enough for use and is subject to change"
60+ ) ]
61+ #[ doc( no_inline) ]
62+ pub use core:: prelude:: v1:: global_asm;
63+
4864// FIXME: Attribute and internal derive macros are not documented because for them rustdoc generates
4965// dead links which fail link checker testing.
5066#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
0 commit comments