about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2022-09-23 18:03:44 +0200
committerNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2022-09-23 20:55:37 +0200
commit334f4535bd51c550d014f408364390095d99cd30 (patch)
treed7131cd1230c15b38d1edc5ddbaf0407eba093e4
parent2063b8f1377550cd8a6cb55fee838dcac5cf452e (diff)
downloadrust-334f4535bd51c550d014f408364390095d99cd30.tar.gz
rust-334f4535bd51c550d014f408364390095d99cd30.zip
Stabilize const `BTree{Map,Set}::new`
Since `len` and `is_empty` are not const stable yet, this also
creates a new feature for them since they previously used the same
`const_btree_new` feature.
-rw-r--r--tests/ui/crashes/ice-7126.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/crashes/ice-7126.rs b/tests/ui/crashes/ice-7126.rs
index ca563ba0978..b2dc2248b55 100644
--- a/tests/ui/crashes/ice-7126.rs
+++ b/tests/ui/crashes/ice-7126.rs
@@ -1,13 +1,13 @@
 // This test requires a feature gated const fn and will stop working in the future.
 
-#![feature(const_btree_new)]
+#![feature(const_btree_len)]
 
 use std::collections::BTreeMap;
 
-struct Foo(BTreeMap<i32, i32>);
+struct Foo(usize);
 impl Foo {
     fn new() -> Self {
-        Self(BTreeMap::new())
+        Self(BTreeMap::len(&BTreeMap::<u8, u8>::new()))
     }
 }