@@ -39,12 +39,28 @@ pub use crate::result::Result::{self, Err, Ok};
39
39
#[ allow( deprecated) ]
40
40
#[ doc( no_inline) ]
41
41
pub 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 ,
46
46
} ;
47
47
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
+
48
64
// FIXME: Attribute and internal derive macros are not documented because for them rustdoc generates
49
65
// dead links which fail link checker testing.
50
66
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
0 commit comments