diff options
| author | lcnr <rust@lcnr.de> | 2022-12-04 03:19:10 +0000 | 
|---|---|---|
| committer | lcnr <rust@lcnr.de> | 2022-12-19 16:46:17 +0000 | 
| commit | a213bb36c953d2c342d8ae9303704e57bc8aab33 (patch) | |
| tree | 01fa1c6b8fa4b3e5099424ef9aba0c282fb43d94 /compiler/rustc_trait_selection/src/lib.rs | |
| parent | 4653c93e4442d88bf3278067183c8fdc0be74a1f (diff) | |
| download | rust-a213bb36c953d2c342d8ae9303704e57bc8aab33.tar.gz rust-a213bb36c953d2c342d8ae9303704e57bc8aab33.zip | |
implement the skeleton of the updated trait solver
Diffstat (limited to 'compiler/rustc_trait_selection/src/lib.rs')
| -rw-r--r-- | compiler/rustc_trait_selection/src/lib.rs | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/compiler/rustc_trait_selection/src/lib.rs b/compiler/rustc_trait_selection/src/lib.rs index 975ff31a607..a30d1df4ede 100644 --- a/compiler/rustc_trait_selection/src/lib.rs +++ b/compiler/rustc_trait_selection/src/lib.rs @@ -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; | 
