rust/src/librustc_infer/lib.rs

37 lines
1.0 KiB
Rust
Raw Normal View History

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
//! type check pass in the compiler is found in the `librustc_typeck` crate.
//!
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
//!
//! [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.
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
#![feature(bool_to_option)]
#![feature(box_patterns)]
#![feature(box_syntax)]
#![feature(never_type)]
#![feature(range_is_empty)]
#![feature(in_band_lifetimes)]
#![feature(crate_visibility_modifier)]
2020-02-11 21:39:02 +00:00
#![recursion_limit = "512"] // For rustdoc
2020-01-06 19:13:24 +00:00
#[macro_use]
extern crate rustc_macros;
2020-01-08 09:18:48 +00:00
#[cfg(target_arch = "x86_64")]
2020-01-06 19:13:24 +00:00
#[macro_use]
extern crate rustc_data_structures;
#[macro_use]
extern crate log;
#[macro_use]
extern crate rustc;
pub mod infer;
pub mod traits;