2022-06-20 03:30:21 +01:00
|
|
|
//! 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/")]
|
2023-11-13 07:39:17 -05:00
|
|
|
#![doc(rust_logo)]
|
|
|
|
#![feature(rustdoc_internals)]
|
|
|
|
#![allow(internal_features)]
|
2024-02-06 09:51:39 +11:00
|
|
|
#![allow(rustc::diagnostic_outside_of_impl)]
|
|
|
|
#![allow(rustc::untranslatable_diagnostic)]
|
2024-03-02 19:29:53 +01:00
|
|
|
#![feature(assert_matches)]
|
2024-03-05 18:23:01 +00:00
|
|
|
#![cfg_attr(bootstrap, feature(associated_type_bounds))]
|
2024-02-24 19:38:58 -05:00
|
|
|
#![feature(associated_type_defaults)]
|
2020-09-10 09:06:30 +02:00
|
|
|
#![feature(box_patterns)]
|
2022-03-01 18:34:35 -03:00
|
|
|
#![feature(control_flow_enum)]
|
2023-04-09 00:37:21 +02:00
|
|
|
#![feature(extract_if)]
|
2024-04-14 09:21:38 -04:00
|
|
|
#![feature(if_let_guard)]
|
2022-08-20 20:40:08 +02:00
|
|
|
#![feature(let_chains)]
|
2024-01-08 11:13:50 +01:00
|
|
|
#![feature(option_take_if)]
|
2020-09-19 22:17:52 +02:00
|
|
|
#![feature(never_type)]
|
2022-08-22 16:53:34 -03:00
|
|
|
#![feature(type_alias_impl_trait)]
|
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;
|
2024-04-03 12:55:40 +11:00
|
|
|
#[cfg(all(any(target_arch = "x86_64", target_arch = "aarch64"), 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
|
|
|
|
2022-08-26 13:08:58 -05:00
|
|
|
pub mod errors;
|
2020-02-22 11:44:18 +01:00
|
|
|
pub mod infer;
|
2023-12-18 22:45:34 +00:00
|
|
|
pub mod regions;
|
2022-12-04 03:19:10 +00:00
|
|
|
pub mod solve;
|
2020-02-22 11:44:18 +01:00
|
|
|
pub mod traits;
|
2022-10-13 10:13:02 +01:00
|
|
|
|
2023-11-22 09:53:07 +11:00
|
|
|
rustc_fluent_macro::fluent_messages! { "../messages.ftl" }
|