We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#[allow(instantly_dangling_pointer)]
1 parent 3949157 commit 34c4b17Copy full SHA for 34c4b17
library/alloc/tests/boxed.rs
@@ -4,6 +4,9 @@ use core::mem::MaybeUninit;
4
use core::ptr::NonNull;
5
6
#[test]
7
+// FIXME(GrigorenkoPV)
8
+#[allow(unknown_lints, reason="`instantly_dangling_pointer` does not exist at stage 0 yet")]
9
+#[allow(instantly_dangling_pointer)]
10
fn uninitialized_zero_size_box() {
11
assert_eq!(
12
&*Box::<()>::new_uninit() as *const _,
0 commit comments