Skip to content

Commit eae9027

Browse files
authored
Rollup merge of rust-lang#88030 - fee1-dead:fixme, r=oli-obk
Assign FIXMEs to me and remove obsolete ones Also fixed capitalization of documentation We also don't need to transform predicates to be non-const since we basically ignore const predicates in non-const contexts. r? `````@oli-obk`````
2 parents 6ec621d + 1ec4e32 commit eae9027

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

alloc/tests/const_fns.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub const MY_VEC: Vec<usize> = Vec::new();
1010
#[allow(dead_code)]
1111
pub const MY_STRING: String = String::new();
1212

13-
// FIXME remove this struct once we put `K: ?const Ord` on BTreeMap::new.
13+
// FIXME(fee1-dead) remove this struct once we put `K: ?const Ord` on BTreeMap::new.
1414
#[derive(PartialEq, Eq, PartialOrd)]
1515
pub struct MyType;
1616

alloc/tests/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
#![feature(string_remove_matches)]
2626
#![feature(const_btree_new)]
2727
#![feature(const_trait_impl)]
28-
// FIXME remove this when const_trait_impl is not incomplete anymore
29-
#![allow(incomplete_features)]
3028

3129
use std::collections::hash_map::DefaultHasher;
3230
use std::hash::{Hash, Hasher};

0 commit comments

Comments
 (0)