summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_smir/src/lib.rs
blob: 5c7aaf35b90326eb6d33a00e513bed6d33db2a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! The WIP stable interface to rustc internals.
//!
//! For more information see https://github.com/rust-lang/project-stable-mir
//!
//! # Note
//!
//! This API is still completely unstable and subject to change.

#![doc(
    html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
    test(attr(allow(unused_variables), deny(warnings)))
)]
#![cfg_attr(not(feature = "default"), feature(rustc_private))]

pub mod mir;

pub mod very_unstable;