From 7a7144f4136897605842886b1ca51515e75d654e Mon Sep 17 00:00:00 2001 From: woppopo Date: Fri, 28 Jan 2022 17:27:33 +0900 Subject: [PATCH] test_const_allocate_at_runtime --- library/core/tests/intrinsics.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/library/core/tests/intrinsics.rs b/library/core/tests/intrinsics.rs index e5b6fa7f73258..df940de479532 100644 --- a/library/core/tests/intrinsics.rs +++ b/library/core/tests/intrinsics.rs @@ -83,7 +83,16 @@ fn test_hints_in_const_contexts() { #[cfg(not(bootstrap))] #[test] -fn test_const_dealocate_at_runtime() { +fn test_const_allocate_at_runtime() { + use core::intrinsics::const_allocate; + unsafe { + assert!(const_allocate(4, 4).is_null()); + } +} + +#[cfg(not(bootstrap))] +#[test] +fn test_const_deallocate_at_runtime() { use core::intrinsics::const_deallocate; const X: &u32 = &42u32; let x = &0u32;