diff options
| author | Deadbeef <ent3rm4n@gmail.com> | 2021-07-26 16:53:36 +0800 |
|---|---|---|
| committer | Deadbeef <ent3rm4n@gmail.com> | 2021-08-13 09:28:52 +0000 |
| commit | 8c2a1e8e432d092896cf0487eca5de324fc06bfc (patch) | |
| tree | 40faebdced6ace768c70710dc28e2b64d9310443 | |
| parent | 7ea0280aa90256317c3b3cf8b13f47a4c5968dd0 (diff) | |
| download | rust-8c2a1e8e432d092896cf0487eca5de324fc06bfc.tar.gz rust-8c2a1e8e432d092896cf0487eca5de324fc06bfc.zip | |
allow incomplete features for now
| -rw-r--r-- | library/alloc/tests/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/alloc/tests/lib.rs b/library/alloc/tests/lib.rs index 7284c05d5ff..f7d68b5a89e 100644 --- a/library/alloc/tests/lib.rs +++ b/library/alloc/tests/lib.rs @@ -25,6 +25,8 @@ #![feature(string_remove_matches)] #![feature(const_btree_new)] #![feature(const_trait_impl)] +// FIXME remove this when const_trait_impl is not incomplete anymore +#![allow(incomplete_features)] use std::collections::hash_map::DefaultHasher; use std::hash::{Hash, Hasher}; |
