2020-02-11 21:39:02 +00:00
|
|
|
//! This crates defines the type inference engine.
|
2020-01-06 19:13:24 +00:00
|
|
|
//!
|
|
|
|
//! - **Type inference.** The type inference code can be found in the `infer` module;
|
|
|
|
//! this code handles low-level equality and subtyping operations. The
|
2022-09-26 11:00:29 +00:00
|
|
|
//! type check pass in the compiler is found in the `rustc_hir_analysis` crate.
|
2020-01-06 19:13:24 +00:00
|
|
|
//!
|
2020-03-05 21:07:42 +00:00
|
|
|
//! For more information about how rustc works, see the [rustc dev guide].
|
2020-01-06 19:13:24 +00:00
|
|
|
//!
|
2020-03-09 21:33:04 +00:00
|
|
|
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/
|
2020-01-06 19:13:24 +00:00
|
|
|
//!
|
|
|
|
//! # Note
|
|
|
|
//!
|
|
|
|
//! This API is completely unstable and subject to change.
|
|
|
|
|
2020-09-23 19:51:56 +00:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
2023-11-13 12:39:17 +00:00
|
|
|
#![doc(rust_logo)]
|
|
|
|
#![feature(rustdoc_internals)]
|
|
|
|
#![allow(internal_features)]
|
2024-02-05 22:51:39 +00:00
|
|
|
#![allow(rustc::diagnostic_outside_of_impl)]
|
|
|
|
#![allow(rustc::untranslatable_diagnostic)]
|
2020-01-06 19:13:24 +00:00
|
|
|
#![feature(box_patterns)]
|
2024-02-24 07:53:05 +00:00
|
|
|
#![feature(control_flow_enum)]
|
2020-05-13 03:09:55 +00:00
|
|
|
#![feature(extend_one)]
|
2022-08-20 18:40:08 +00:00
|
|
|
#![feature(let_chains)]
|
2022-09-12 20:17:06 +00:00
|
|
|
#![feature(if_let_guard)]
|
2024-02-25 12:46:11 +00:00
|
|
|
#![feature(iter_intersperse)]
|
2023-12-25 21:37:29 +00:00
|
|
|
#![feature(iterator_try_collect)]
|
2022-02-14 12:25:26 +00:00
|
|
|
#![feature(try_blocks)]
|
2024-03-15 11:37:42 +00:00
|
|
|
#![feature(yeet_expr)]
|
2020-02-11 21:39:02 +00:00
|
|
|
#![recursion_limit = "512"] // For rustdoc
|
2020-01-06 19:13:24 +00:00
|
|
|
|
|
|
|
#[macro_use]
|
2020-08-14 06:05:01 +00:00
|
|
|
extern crate tracing;
|
2020-01-06 19:13:24 +00:00
|
|
|
#[macro_use]
|
2020-03-29 13:24:45 +00:00
|
|
|
extern crate rustc_middle;
|
2020-01-06 19:13:24 +00:00
|
|
|
|
2022-08-21 17:56:00 +00:00
|
|
|
mod errors;
|
2020-01-06 19:13:24 +00:00
|
|
|
pub mod infer;
|
|
|
|
pub mod traits;
|
2022-10-13 09:13:02 +00:00
|
|
|
|
2023-11-21 22:53:07 +00:00
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|