diff options
| author | Brad Gibson <b2b@humanenginuity.com> | 2018-04-27 06:39:04 -0700 |
|---|---|---|
| committer | Brad Gibson <b2b@humanenginuity.com> | 2018-04-27 06:44:11 -0700 |
| commit | 8aa049e54be521c3826b0af15a87b3b4db1fb77b (patch) | |
| tree | 7b22cfee45499dba7444b8a245546f89855bdbb2 | |
| parent | 2bf9fbc8d61e2283cd6133b96cff2e04988bbe69 (diff) | |
| download | rust-8aa049e54be521c3826b0af15a87b3b4db1fb77b.tar.gz rust-8aa049e54be521c3826b0af15a87b3b4db1fb77b.zip | |
moved #![feature(inner_deref) to from libcore crate to libcore tests crate to enable related tests
| -rw-r--r-- | src/libcore/lib.rs | 1 | ||||
| -rw-r--r-- | src/libcore/tests/lib.rs | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index 55c5e1e7971..0e21a3327fd 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -103,7 +103,6 @@ #![feature(untagged_unions)] #![feature(unwind_attributes)] #![feature(doc_alias)] -#![feature(inner_deref)] #![cfg_attr(not(stage0), feature(mmx_target_feature))] #![cfg_attr(not(stage0), feature(tbm_target_feature))] diff --git a/src/libcore/tests/lib.rs b/src/libcore/tests/lib.rs index e4d27717938..111cf58c2c6 100644 --- a/src/libcore/tests/lib.rs +++ b/src/libcore/tests/lib.rs @@ -46,6 +46,7 @@ #![feature(reverse_bits)] #![feature(inclusive_range_fields)] #![feature(iterator_find_map)] +#![feature(inner_deref)] extern crate core; extern crate test; |
