about summary refs log tree commit diff
path: root/compiler/rustc_index/src/lib.rs
blob: a9efd6bb8bc8db2e109adc77fc819b4c705989ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![feature(allow_internal_unstable)]
#![feature(bench_black_box)]
#![feature(extend_one)]
#![feature(min_specialization)]
#![feature(step_trait)]
#![feature(test)]
#![feature(let_else)]

pub mod bit_set;
pub mod vec;

// FIXME(#56935): Work around ICEs during cross-compilation.
#[allow(unused)]
extern crate rustc_macros;