diff options
| author | Eduard-Mihai Burtescu <edy.burt@gmail.com> | 2018-09-11 22:52:00 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-11 22:52:00 +0300 |
| commit | a94c16614c3a43d609a437afa92ef5ae7d3965ea (patch) | |
| tree | 0c2086cfbdfaa387b68b827e42920294f6213be8 | |
| parent | 79f2cc08e61b25a71a7528f7436a7e011017c56b (diff) | |
| download | rust-a94c16614c3a43d609a437afa92ef5ae7d3965ea.tar.gz rust-a94c16614c3a43d609a437afa92ef5ae7d3965ea.zip | |
Add missing #![feature(min_const_fn)] to the newtype_index test.
| -rw-r--r-- | src/test/run-pass-fulldeps/newtype_index.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass-fulldeps/newtype_index.rs b/src/test/run-pass-fulldeps/newtype_index.rs index e1eeb3f3aa1..08e2c35e072 100644 --- a/src/test/run-pass-fulldeps/newtype_index.rs +++ b/src/test/run-pass-fulldeps/newtype_index.rs @@ -1,4 +1,4 @@ -#![feature(rustc_attrs, step_trait, rustc_private)] +#![feature(min_const_fn, rustc_attrs, rustc_private, step_trait)] #[macro_use] extern crate rustc_data_structures; extern crate rustc_serialize; |
