about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-03-22 21:59:17 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-03-22 22:04:10 -0500
commitc548eda362fdc4939f4039f8765c1e3c6395dd7e (patch)
treea4f09764520d1fa1b6b5d0ec0b3a7f6504a1dd07
parent2628f3cc8f91a52d9dcc800afb6c4a7dc0c785e0 (diff)
downloadrust-c548eda362fdc4939f4039f8765c1e3c6395dd7e.tar.gz
rust-c548eda362fdc4939f4039f8765c1e3c6395dd7e.zip
enable question_mark feature in rustc_borrowck
-rw-r--r--src/librustc_borrowck/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_borrowck/lib.rs b/src/librustc_borrowck/lib.rs
index 65e9b792241..1aa27f8b32b 100644
--- a/src/librustc_borrowck/lib.rs
+++ b/src/librustc_borrowck/lib.rs
@@ -25,6 +25,7 @@
 #![feature(staged_api)]
 #![feature(associated_consts)]
 #![feature(nonzero)]
+#![feature(question_mark)]
 #[macro_use] extern crate log;
 #[macro_use] extern crate syntax;