]> git.lizzy.rs Git - rust.git/blob - library/alloc/benches/lib.rs
Rollup merge of #95102 - compiler-errors:issue-94034-bug, r=jackh726
[rust.git] / library / alloc / benches / lib.rs
1 // Disabling on android for the time being
2 // See https://github.com/rust-lang/rust/issues/73535#event-3477699747
3 #![cfg(not(target_os = "android"))]
4 #![feature(btree_drain_filter)]
5 #![feature(map_first_last)]
6 #![feature(repr_simd)]
7 #![feature(slice_partition_dedup)]
8 #![feature(test)]
9
10 extern crate test;
11
12 mod binary_heap;
13 mod btree;
14 mod linked_list;
15 mod slice;
16 mod str;
17 mod string;
18 mod vec;
19 mod vec_deque;