about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/tests/intrinsics.rs11
1 files changed, 10 insertions, 1 deletions
diff --git a/library/core/tests/intrinsics.rs b/library/core/tests/intrinsics.rs
index e5b6fa7f732..df940de4795 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;