From e0b44797ce644210af0fd1596d1aa2e5338c976b Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Tue, 21 Jul 2015 14:32:33 +0200 Subject: [PATCH] Add new feature gate opt-in necessary for `new-box-syntax.rs`. --- src/test/run-pass/new-box-syntax.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/run-pass/new-box-syntax.rs b/src/test/run-pass/new-box-syntax.rs index b5a54a90ae75..d2ebd6863fa6 100644 --- a/src/test/run-pass/new-box-syntax.rs +++ b/src/test/run-pass/new-box-syntax.rs @@ -15,6 +15,7 @@ #![allow(warnings)] #![feature(box_syntax, box_heap)] +#![feature(placement_in_syntax)] // Tests that the new `box` syntax works with unique pointers.