diff --git a/src/libcore/tests/mem.rs b/src/libcore/tests/mem.rs index 9ed2323e2873..8337ab103419 100644 --- a/src/libcore/tests/mem.rs +++ b/src/libcore/tests/mem.rs @@ -132,18 +132,18 @@ fn test_discriminant_send_sync() { #[test] fn test_const_forget() { - const fn test_const_forget(x: T) { - forget(x); - } + const _: () = forget(0i32); + const _: () = forget(Vec::>>::new()); // 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) { + const fn const_forget_box(x: Box) { forget(x); } - const _: () = test_const_forget(0i32); - const _: () = test_const_forget(Vec::>>::new()); + // Call the forget_box at runtime, + // as we can't const-construct a box yet. + const_forget_box(Box::new(0i32)); }