11 lines
227 B
Rust
11 lines
227 B
Rust
|
//! The WIP stable interface to rustc internals.
|
||
|
|
||
|
#![doc(
|
||
|
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
|
||
|
test(attr(allow(unused_variables), deny(warnings)))
|
||
|
)]
|
||
|
|
||
|
pub mod mir;
|
||
|
|
||
|
pub mod very_unstable;
|