about summary refs log tree commit diff
path: root/src/libcollections/lib.rs
diff options
context:
space:
mode:
authorFelix S. Klock II <pnkfelix@pnkfx.org>2015-02-10 22:52:44 +0100
committerFelix S. Klock II <pnkfelix@pnkfx.org>2015-02-11 11:47:14 +0100
commite5ec43e217703c19f58842ebd8c40d35345bd896 (patch)
tree1b4ed1a7bcf457b04bb33ddaf20edabd0c47187e /src/libcollections/lib.rs
parent105f70b50097a5776ef0d1a6da6753c25d191aa6 (diff)
downloadrust-e5ec43e217703c19f58842ebd8c40d35345bd896.tar.gz
rust-e5ec43e217703c19f58842ebd8c40d35345bd896.zip
Opt into new `box_patterns` feature gate in various crates.
Namely: `collections` (used in `dlist.rs`), `syntax`, `rustc`,
`rustc_typeck`, `rustc_trans`, and `rustdoc`.
Diffstat (limited to 'src/libcollections/lib.rs')
-rw-r--r--src/libcollections/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs
index a542ee5d47d..0dd48fcfab6 100644
--- a/src/libcollections/lib.rs
+++ b/src/libcollections/lib.rs
@@ -24,6 +24,7 @@
 
 #![feature(alloc)]
 #![feature(box_syntax)]
+#![feature(box_patterns)]
 #![feature(core)]
 #![feature(hash)]
 #![feature(staged_api)]