We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61486f4 commit 4a19ef9Copy full SHA for 4a19ef9
src/libstd/panicking.rs
@@ -47,6 +47,8 @@ extern {
47
vtable_ptr: *mut usize) -> u32;
48
49
/// `payload` is actually a `*mut &mut dyn BoxMeUp` but that would cause FFI warnings.
50
+ /// It cannot be `Box<dyn BoxMeUp>` because the other end of this call does not depend
51
+ /// on liballoc, and thus cannot use `Box`.
52
#[unwind(allowed)]
53
fn __rust_start_panic(payload: usize) -> u32;
54
}
0 commit comments