]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_smir/src/lib.rs
Rollup merge of #97780 - compiler-errors:field-wfcheck-before-sized, r=jackh726
[rust.git] / compiler / rustc_smir / src / lib.rs
1 //! The WIP stable interface to rustc internals.
2 //!
3 //! For more information see https://github.com/rust-lang/project-stable-mir
4 //!
5 //! # Note
6 //!
7 //! This API is still completely unstable and subject to change.
8
9 #![doc(
10     html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
11     test(attr(allow(unused_variables), deny(warnings)))
12 )]
13 #![cfg_attr(not(feature = "default"), feature(rustc_private))]
14
15 pub mod mir;
16
17 pub mod very_unstable;