We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93e6c26 commit bd04c30Copy full SHA for bd04c30
src/librustc_data_structures/array_vec.rs
@@ -19,6 +19,7 @@ use std::slice;
19
use std::fmt;
20
use std::mem;
21
use std::collections::range::RangeArgument;
22
+use std::collections::Bound::{Excluded, Included, Unbounded};
23
24
pub unsafe trait Array {
25
type Element;
src/librustc_data_structures/lib.rs
@@ -27,6 +27,7 @@
27
28
#![feature(shared)]
29
#![feature(collections_range)]
30
+#![feature(collections_bound)]
31
#![feature(nonzero)]
32
#![feature(rustc_private)]
33
#![feature(staged_api)]
0 commit comments