]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_traits/src/lib.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / compiler / rustc_traits / src / lib.rs
1 //! New recursive solver modeled on Chalk's recursive solver. Most of
2 //! the guts are broken up into modules; see the comments in those modules.
3
4 #![feature(crate_visibility_modifier)]
5 #![feature(in_band_lifetimes)]
6 #![feature(nll)]
7 #![recursion_limit = "256"]
8
9 #[macro_use]
10 extern crate tracing;
11 #[macro_use]
12 extern crate rustc_middle;
13
14 mod chalk;
15 mod dropck_outlives;
16 mod evaluate_obligation;
17 mod implied_outlives_bounds;
18 mod normalize_erasing_regions;
19 mod normalize_projection_ty;
20 mod type_op;
21
22 use rustc_middle::ty::query::Providers;
23
24 pub fn provide(p: &mut Providers) {
25     dropck_outlives::provide(p);
26     evaluate_obligation::provide(p);
27     implied_outlives_bounds::provide(p);
28     chalk::provide(p);
29     normalize_projection_ty::provide(p);
30     normalize_erasing_regions::provide(p);
31     type_op::provide(p);
32 }