about summary refs log tree commit diff
path: root/library/alloc/src/raw_vec
diff options
context:
space:
mode:
authorblitzerr <rusty.blitzerr@gmail.com>2020-09-21 15:52:35 -0700
committerblitzerr <rusty.blitzerr@gmail.com>2020-09-21 16:43:36 -0700
commit7e443a1ffc587858c16aeac1dda3d2dffce0ff5f (patch)
treeb3e1adf9d777c55bf12376e3c2663074716f0b04 /library/alloc/src/raw_vec
parentd9d02fa168016b5b5b2033a2964a723f447f94b0 (diff)
downloadrust-7e443a1ffc587858c16aeac1dda3d2dffce0ff5f.tar.gz
rust-7e443a1ffc587858c16aeac1dda3d2dffce0ff5f.zip
Added feature flag to use cell_update
Diffstat (limited to 'library/alloc/src/raw_vec')
-rw-r--r--library/alloc/src/raw_vec/tests.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/library/alloc/src/raw_vec/tests.rs b/library/alloc/src/raw_vec/tests.rs
index f348710d61a..41d6c98b481 100644
--- a/library/alloc/src/raw_vec/tests.rs
+++ b/library/alloc/src/raw_vec/tests.rs
@@ -1,6 +1,10 @@
+#![feature(cell_update)]
+
 use super::*;
 use std::cell::Cell;
 
+
+
 #[test]
 fn allocator_param() {
     use crate::alloc::AllocErr;