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

41 lines
917 B
Rust
Raw Normal View History

2020-01-13 13:40:30 +01:00
//! Various checks
//!
//! # 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/")]
2021-07-02 10:14:13 +09:00
#![feature(control_flow_enum)]
#![feature(never_type)]
#![feature(box_patterns)]
2020-01-13 13:40:30 +01:00
#![recursion_limit = "256"]
#![deny(rustc::untranslatable_diagnostic)]
#![deny(rustc::diagnostic_outside_of_impl)]
2020-01-13 13:40:30 +01:00
#[macro_use]
2020-03-29 16:41:09 +02:00
extern crate rustc_middle;
2020-01-13 13:40:30 +01:00
#[macro_use]
2020-08-13 23:05:01 -07:00
extern crate tracing;
2020-01-13 13:40:30 +01:00
2020-03-29 16:41:09 +02:00
use rustc_middle::ty::query::Providers;
2020-01-13 13:40:30 +01:00
mod assoc;
mod common_traits;
2022-06-28 22:45:05 +02:00
mod consts;
mod errors;
mod implied_bounds;
2020-02-12 17:24:32 +01:00
pub mod instance;
mod needs_drop;
pub mod representability;
2020-01-13 13:40:30 +01:00
mod ty;
pub fn provide(providers: &mut Providers) {
assoc::provide(providers);
common_traits::provide(providers);
consts::provide(providers);
implied_bounds::provide(providers);
needs_drop::provide(providers);
2020-01-13 13:40:30 +01:00
ty::provide(providers);
2020-04-05 01:21:36 -04:00
instance::provide(providers);
2020-01-13 13:40:30 +01:00
}