1
Fork 0
rust/compiler/rustc_trait_selection/src/lib.rs

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

45 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.
// 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)]
#![feature(assert_matches)]
#![feature(associated_type_defaults)]
2020-09-10 09:06:30 +02:00
#![feature(box_patterns)]
#![feature(cfg_version)]
#![feature(if_let_guard)]
#![feature(iter_intersperse)]
#![feature(iterator_try_reduce)]
#![feature(let_chains)]
#![feature(never_type)]
#![feature(rustdoc_internals)]
#![feature(try_blocks)]
#![feature(type_alias_impl_trait)]
#![feature(unwrap_infallible)]
#![feature(yeet_expr)]
2020-02-11 22:39:02 +01:00
#![recursion_limit = "512"] // For rustdoc
#![warn(unreachable_pub)] // For rustdoc
// tidy-alphabetical-end
2020-02-22 11:44:18 +01:00
pub mod error_reporting;
pub mod errors;
2020-02-22 11:44:18 +01:00
pub mod infer;
pub mod regions;
pub mod solve;
2020-02-22 11:44:18 +01:00
pub mod traits;
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }