rust/compiler/rustc_index/src/lib.rs

15 lines
320 B
Rust
Raw Normal View History

2019-09-25 19:09:51 +00:00
#![feature(allow_internal_unstable)]
#![feature(bench_black_box)]
#![feature(extend_one)]
2021-03-08 23:32:41 +00:00
#![feature(iter_zip)]
2019-09-25 19:09:51 +00:00
#![feature(unboxed_closures)]
#![feature(test)]
2019-09-25 19:09:51 +00:00
#![feature(fn_traits)]
2019-09-26 03:26:16 +00:00
pub mod bit_set;
2019-12-22 22:42:04 +00:00
pub mod vec;
// FIXME(#56935): Work around ICEs during cross-compilation.
#[allow(unused)]
extern crate rustc_macros;