diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-07-29 02:01:38 +0200 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-07-30 10:32:43 +0200 |
| commit | 8a9017323904e7047a7e69f0b07dd57938942697 (patch) | |
| tree | 78e801134d7b6698250f557e2516af8c94db151d /src/liballoc | |
| parent | dcc4b994b90cff60fb4c98ce858755b718c935ad (diff) | |
| download | rust-8a9017323904e7047a7e69f0b07dd57938942697.tar.gz rust-8a9017323904e7047a7e69f0b07dd57938942697.zip | |
Allow 'incomplete_features' in libcore/alloc.
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index c0f345443b9..1211747abd8 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -63,6 +63,7 @@ #![warn(missing_debug_implementations)] #![deny(intra_doc_link_resolution_failure)] // rustdoc is run without -D warnings #![allow(explicit_outlives_requirements)] +#![cfg_attr(not(bootstrap), allow(incomplete_features))] #![cfg_attr(not(test), feature(generator_trait))] #![cfg_attr(test, feature(test))] |
