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

48 lines
1.2 KiB
Rust
Raw Normal View History

//! This crate defines the trait resolution method.
2020-02-22 11:44:18 +01:00
//!
//! - **Traits.** Trait resolution is implemented in the `traits` module.
//!
2020-04-12 05:02:35 +09:00
//! For more information about how rustc works, see the [rustc-dev-guide].
2020-02-22 11:44:18 +01:00
//!
2020-04-12 05:02:35 +09:00
//! [rustc-dev-guide]: https://rustc-dev-guide.rust-lang.org/
2020-02-22 11:44:18 +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/")]
#![feature(associated_type_bounds)]
2020-09-10 09:06:30 +02:00
#![feature(box_patterns)]
#![feature(control_flow_enum)]
#![feature(drain_filter)]
#![feature(hash_drain_filter)]
#![feature(let_chains)]
#![feature(if_let_guard)]
#![feature(never_type)]
#![feature(result_option_inspect)]
#![feature(type_alias_impl_trait)]
2023-01-11 13:39:02 +01:00
#![feature(min_specialization)]
2020-02-11 22:39:02 +01:00
#![recursion_limit = "512"] // For rustdoc
2020-02-22 11:44:18 +01:00
#[macro_use]
extern crate rustc_macros;
#[cfg(all(target_arch = "x86_64", target_pointer_width = "64"))]
2020-02-22 11:44:18 +01:00
#[macro_use]
extern crate rustc_data_structures;
#[macro_use]
2020-08-13 23:05:01 -07:00
extern crate tracing;
2020-02-22 11:44:18 +01:00
#[macro_use]
2020-03-29 16:41:09 +02:00
extern crate rustc_middle;
2021-06-17 12:20:18 +08:00
#[macro_use]
extern crate smallvec;
2020-02-22 11:44:18 +01:00
use rustc_errors::{DiagnosticMessage, SubdiagnosticMessage};
use rustc_macros::fluent_messages;
pub mod errors;
2020-02-22 11:44:18 +01:00
pub mod infer;
pub mod solve;
2020-02-22 11:44:18 +01:00
pub mod traits;
fluent_messages! { "../messages.ftl" }