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
|
2021-04-07 14:47:01 -05:00
|
|
|
//! type check pass in the compiler is found in the `rustc_typeck` 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
|
|
|
//!
|
2020-03-09 18:33:04 -03: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.
|
|
|
|
|
2020-09-23 21:51:56 +02:00
|
|
|
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
|
2020-01-06 20:13:24 +01:00
|
|
|
#![feature(bool_to_option)]
|
|
|
|
#![feature(box_patterns)]
|
2021-11-22 20:17:53 -05:00
|
|
|
#![feature(derive_default_enum)]
|
2020-05-12 20:09:55 -07:00
|
|
|
#![feature(extend_one)]
|
2021-10-16 03:45:14 +02:00
|
|
|
#![feature(let_else)]
|
2020-01-06 20:13:24 +01:00
|
|
|
#![feature(never_type)]
|
2020-10-21 14:24:35 +02:00
|
|
|
#![feature(control_flow_enum)]
|
2021-04-02 00:58:45 -04:00
|
|
|
#![feature(min_specialization)]
|
2021-07-25 22:12:34 -04:00
|
|
|
#![feature(label_break_value)]
|
2020-02-11 22:39:02 +01:00
|
|
|
#![recursion_limit = "512"] // For rustdoc
|
2022-01-05 13:02:16 +01:00
|
|
|
#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
|
2020-01-06 20:13:24 +01:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_macros;
|
2021-03-06 16:02:48 +00:00
|
|
|
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
|
2020-01-06 20:13:24 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate rustc_data_structures;
|
|
|
|
#[macro_use]
|
2020-08-13 23:05:01 -07:00
|
|
|
extern crate tracing;
|
2020-01-06 20:13:24 +01:00
|
|
|
#[macro_use]
|
2020-03-29 15:24:45 +02:00
|
|
|
extern crate rustc_middle;
|
2020-01-06 20:13:24 +01:00
|
|
|
|
|
|
|
pub mod infer;
|
|
|
|
pub mod traits;
|