about summary refs log tree commit diff
path: root/src/test/run-pass
diff options
context:
space:
mode:
authortinaun <tinagma@gmail.com>2018-04-17 00:59:16 -0400
committertinaun <tinagma@gmail.com>2018-04-17 01:22:28 -0400
commitb84baf23788e96a1d79de543eb264ff7d2334c63 (patch)
treed0f43d2c555d5054001da4dbede7bb0ad4d76e26 /src/test/run-pass
parent4a8f4b7e4958f5a57ca2ebb936a2f6770191eebd (diff)
downloadrust-b84baf23788e96a1d79de543eb264ff7d2334c63.tar.gz
rust-b84baf23788e96a1d79de543eb264ff7d2334c63.zip
stabilize `nonnull_cast` feature
Diffstat (limited to 'src/test/run-pass')
-rw-r--r--src/test/run-pass/realloc-16687.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/realloc-16687.rs b/src/test/run-pass/realloc-16687.rs
index 38cc23c16a9..afa3494c389 100644
--- a/src/test/run-pass/realloc-16687.rs
+++ b/src/test/run-pass/realloc-16687.rs
@@ -13,7 +13,7 @@
 // Ideally this would be revised to use no_std, but for now it serves
 // well enough to reproduce (and illustrate) the bug from #16687.
 
-#![feature(heap_api, allocator_api, nonnull_cast)]
+#![feature(heap_api, allocator_api)]
 
 use std::alloc::{Global, Alloc, Layout};
 use std::ptr::{self, NonNull};