mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-20 03:27:30 +00:00
20 lines
568 B
Rust
20 lines
568 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)))
|
|
)]
|
|
#![cfg_attr(not(feature = "default"), feature(rustc_private))]
|
|
|
|
pub mod rustc_internal;
|
|
pub mod stable_mir;
|
|
|
|
// Make this module private for now since external users should not call these directly.
|
|
mod rustc_smir;
|