rust/src/lib.rs
Oli Scherer 9da5e13294 Rustfmt
2022-06-02 12:06:34 +02:00

17 lines
392 B
Rust

//! 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)))
)]
pub mod mir;
pub mod very_unstable;