rust/compiler/rustc_infer/src/lib.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
1 KiB
Rust
Raw Normal View History

2020-02-11 22:39:02 +01:00
//! This crates defines the type inference engine.
2020-01-06 20:13:24 +01: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 13:00:29 +02:00
//! type check pass in the compiler is found in the `rustc_hir_analysis` crate.
2020-01-06 20:13:24 +01:00
//!
2020-03-05 18:07:42 -03:00
//! For more information about how rustc works, see the [rustc dev guide].
2020-01-06 20:13:24 +01:00
//!
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/
2020-01-06 20:13:24 +01:00
//!
//! # Note
//!
//! This API is completely unstable and subject to change.
// tidy-alphabetical-start
2023-11-13 07:39:17 -05:00
#![allow(internal_features)]
#![allow(rustc::diagnostic_outside_of_impl)]
#![allow(rustc::untranslatable_diagnostic)]
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
#![doc(rust_logo)]
2024-08-11 12:10:36 -04:00
#![feature(assert_matches)]
#![feature(extend_one)]
2023-12-25 21:37:29 +00:00
#![feature(iterator_try_collect)]
#![feature(let_chains)]
#![feature(rustdoc_internals)]
2020-02-11 22:39:02 +01:00
#![recursion_limit = "512"] // For rustdoc
// tidy-alphabetical-end
2020-01-06 20:13:24 +01:00
mod errors;
2020-01-06 20:13:24 +01:00
pub mod infer;
pub mod traits;
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }