implement the skeleton of the updated trait solver
This commit is contained in:
parent
4653c93e44
commit
a213bb36c9
21 changed files with 1569 additions and 87 deletions
|
@ -19,6 +19,7 @@
|
|||
#![feature(let_chains)]
|
||||
#![feature(if_let_guard)]
|
||||
#![feature(never_type)]
|
||||
#![feature(result_option_inspect)]
|
||||
#![feature(type_alias_impl_trait)]
|
||||
#![recursion_limit = "512"] // For rustdoc
|
||||
|
||||
|
@ -37,4 +38,5 @@ extern crate smallvec;
|
|||
pub mod autoderef;
|
||||
pub mod errors;
|
||||
pub mod infer;
|
||||
pub mod solve;
|
||||
pub mod traits;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue