about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2015-07-21 14:32:33 +0200
committerFelix S. Klock II <pnkfelix@pnkfx.org>2015-07-22 15:34:00 +0200
commite0b44797ce644210af0fd1596d1aa2e5338c976b (patch)
tree35ab0b417c4086c412f1c8f429ae326a8c27ce9b
parent80465334aa2d371b368b5d734cdcc1061d895ffb (diff)
downloadrust-e0b44797ce644210af0fd1596d1aa2e5338c976b.tar.gz
rust-e0b44797ce644210af0fd1596d1aa2e5338c976b.zip
Add new feature gate opt-in necessary for `new-box-syntax.rs`.
-rw-r--r--src/test/run-pass/new-box-syntax.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/run-pass/new-box-syntax.rs b/src/test/run-pass/new-box-syntax.rs
index b5a54a90ae7..d2ebd6863fa 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.