From 011fa9107f405149d006a4208ffb8503214e82ce Mon Sep 17 00:00:00 2001 From: Dodo Date: Mon, 2 Mar 2020 21:05:14 +0100 Subject: [PATCH] const forget tests --- src/libcore/tests/lib.rs | 1 + src/libcore/tests/mem.rs | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/src/libcore/tests/lib.rs b/src/libcore/tests/lib.rs index 991458db5b72..cc341c939803 100644 --- a/src/libcore/tests/lib.rs +++ b/src/libcore/tests/lib.rs @@ -40,6 +40,7 @@ #![feature(never_type)] #![feature(unwrap_infallible)] #![feature(leading_trailing_ones)] +#![feature(const_forget)] extern crate test; diff --git a/src/libcore/tests/mem.rs b/src/libcore/tests/mem.rs index 59588d97787b..4841be5fc710 100644 --- a/src/libcore/tests/mem.rs +++ b/src/libcore/tests/mem.rs @@ -129,3 +129,21 @@ fn test_discriminant_send_sync() { is_send_sync::>(); is_send_sync::>(); } + +#[test] +fn test_const_forget() { + const fn test_const_forget(x: T) { + forget(x); + } + + // Writing this function signature without const-forget + // triggers compiler errors: + // 1) That we use a non-const fn inside a const fn + // 2) without the forget, it complains about the destructor of Box + const fn const_forget_box(mut x: Box) { + forget(x); + } + + const _: () = test_const_forget(0i32); + const _: () = test_const_forget(Vec::>>::new()); +} \ No newline at end of file