rust/src/lib.rs

17 lines
394 B
Rust
Raw Normal View History

2022-05-25 02:30:04 -05:00
//! The WIP stable interface to rustc internals.
2022-05-25 03:48:14 -05:00
//!
//! For more information see https://github.com/rust-lang/project-stable-mir
//!
//! # Note
//!
//! This API is still completely unstable and subject to change.
2022-05-25 02:30:04 -05:00
#![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;