about summary refs log tree commit diff
path: root/library/alloc/tests
diff options
context:
space:
mode:
authorDeadbeef <ent3rm4n@gmail.com>2021-08-14 15:57:46 +0000
committerDeadbeef <ent3rm4n@gmail.com>2021-08-14 16:48:01 +0000
commitf25d2bd53b939a9f4e5adf5af7e9ebb3787f730a (patch)
tree87581c5fad400c1dec272f1996bbfcc911a2bb4a /library/alloc/tests
parent136eaa1b25d13635b773a481ecab61a3162cb627 (diff)
downloadrust-f25d2bd53b939a9f4e5adf5af7e9ebb3787f730a.tar.gz
rust-f25d2bd53b939a9f4e5adf5af7e9ebb3787f730a.zip
Assign FIXMEs to me and remove obsolete ones
Also fixed capitalization of documentation
Diffstat (limited to 'library/alloc/tests')
-rw-r--r--library/alloc/tests/const_fns.rs2
-rw-r--r--library/alloc/tests/lib.rs2
2 files changed, 1 insertions, 3 deletions
diff --git a/library/alloc/tests/const_fns.rs b/library/alloc/tests/const_fns.rs
index 02e8f8f4022..b6ef3eee291 100644
--- a/library/alloc/tests/const_fns.rs
+++ b/library/alloc/tests/const_fns.rs
@@ -10,7 +10,7 @@ pub const MY_VEC: Vec<usize> = Vec::new();
 #[allow(dead_code)]
 pub const MY_STRING: String = String::new();
 
-// FIXME remove this struct once we put `K: ?const Ord` on BTreeMap::new.
+// FIXME(fee1-dead) remove this struct once we put `K: ?const Ord` on BTreeMap::new.
 #[derive(PartialEq, Eq, PartialOrd)]
 pub struct MyType;
 
diff --git a/library/alloc/tests/lib.rs b/library/alloc/tests/lib.rs
index f7d68b5a89e..7284c05d5ff 100644
--- a/library/alloc/tests/lib.rs
+++ b/library/alloc/tests/lib.rs
@@ -25,8 +25,6 @@
 #![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};