File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ pub fn panicking() -> bool {
588
588
}
589
589
590
590
/// Entry point of panics from the core crate (`panic_impl` lang item).
591
- #[ cfg( not( test) ) ]
591
+ #[ cfg( not( any ( test, doctest ) ) ) ]
592
592
#[ panic_handler]
593
593
pub fn begin_panic_handler ( info : & PanicInfo < ' _ > ) -> ! {
594
594
struct FormatStringPayload < ' a > {
@@ -669,7 +669,7 @@ pub fn begin_panic_handler(info: &PanicInfo<'_>) -> ! {
669
669
/// panic!() and assert!(). In particular, this is the only entry point that supports
670
670
/// arbitrary payloads, not just format strings.
671
671
#[ unstable( feature = "libstd_sys_internals" , reason = "used by the panic! macro" , issue = "none" ) ]
672
- #[ cfg_attr( not( test) , lang = "begin_panic" ) ]
672
+ #[ cfg_attr( not( any ( test, doctest ) ) , lang = "begin_panic" ) ]
673
673
// lang item for CTFE panic support
674
674
// never inline unless panic_immediate_abort to avoid code
675
675
// bloat at the call sites as much as possible
Original file line number Diff line number Diff line change @@ -2311,7 +2311,7 @@ pub fn id() -> u32 {
2311
2311
/// of the `main` function, this trait is likely to be available only on
2312
2312
/// standard library's runtime for convenience. Other runtimes are not required
2313
2313
/// to provide similar functionality.
2314
- #[ cfg_attr( not( test) , lang = "termination" ) ]
2314
+ #[ cfg_attr( not( any ( test, doctest ) ) , lang = "termination" ) ]
2315
2315
#[ stable( feature = "termination_trait_lib" , since = "1.61.0" ) ]
2316
2316
#[ rustc_on_unimplemented( on(
2317
2317
cause = "MainFunctionType" ,
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ fn lang_start_internal(
154
154
ret_code
155
155
}
156
156
157
- #[ cfg( not( test) ) ]
157
+ #[ cfg( not( any ( test, doctest ) ) ) ]
158
158
#[ lang = "start" ]
159
159
fn lang_start < T : crate :: process:: Termination + ' static > (
160
160
main : fn ( ) -> T ,
Original file line number Diff line number Diff line change 12
12
13
13
mod dwarf;
14
14
15
- #[ cfg( not( test) ) ]
15
+ #[ cfg( not( any ( test, doctest ) ) ) ]
16
16
cfg_if:: cfg_if! {
17
17
if #[ cfg( target_os = "emscripten" ) ] {
18
18
mod emcc;
You can’t perform that action at this time.
0 commit comments