Skip to content

Commit bd04c30

Browse files
committed
add required imports & feature
1 parent 93e6c26 commit bd04c30

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/librustc_data_structures/array_vec.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ use std::slice;
1919
use std::fmt;
2020
use std::mem;
2121
use std::collections::range::RangeArgument;
22+
use std::collections::Bound::{Excluded, Included, Unbounded};
2223

2324
pub unsafe trait Array {
2425
type Element;

src/librustc_data_structures/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727

2828
#![feature(shared)]
2929
#![feature(collections_range)]
30+
#![feature(collections_bound)]
3031
#![feature(nonzero)]
3132
#![feature(rustc_private)]
3233
#![feature(staged_api)]

0 commit comments

Comments
 (0)