Fix stage 2 tests

This commit is contained in:
varkor
2018-07-25 14:27:27 +01:00
parent 8cee487eb3
commit 319b052357
11 changed files with 10 additions and 13 deletions

View File

@@ -74,9 +74,10 @@
#![needs_allocator]
#![deny(missing_debug_implementations)]
#![cfg_attr(test, allow(deprecated))] // rand
#![cfg_attr(not(test), feature(fn_traits))]
#![cfg_attr(not(test), feature(generator_trait))]
#![cfg_attr(test, feature(rand, test))]
#![cfg_attr(test, feature(test))]
#![feature(allocator_api)]
#![feature(allow_internal_unstable)]
#![feature(arbitrary_self_types)]
@@ -117,9 +118,6 @@
#![feature(rustc_const_unstable)]
#![feature(const_vec_new)]
#![cfg_attr(not(test), feature(fn_traits))]
#![cfg_attr(test, feature(test))]
// Allow testing this library
#[cfg(test)]