diff options
| author | Michael Goulet <michael@errs.io> | 2024-07-21 15:20:41 -0400 | 
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-07-21 22:34:35 -0400 | 
| commit | ce8a625092fa48c2be475f659aa2a91b5591108f (patch) | |
| tree | 00970ec2be7f2197edb9a9ab419d5fe94eb266d6 /compiler/rustc_trait_selection/src/lib.rs | |
| parent | f49738ba6c904b75de8b342d4a4fb9664819b2a1 (diff) | |
| download | rust-ce8a625092fa48c2be475f659aa2a91b5591108f.tar.gz rust-ce8a625092fa48c2be475f659aa2a91b5591108f.zip | |
Move all error reporting into rustc_trait_selection
Diffstat (limited to 'compiler/rustc_trait_selection/src/lib.rs')
| -rw-r--r-- | compiler/rustc_trait_selection/src/lib.rs | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/compiler/rustc_trait_selection/src/lib.rs b/compiler/rustc_trait_selection/src/lib.rs index d0a12d73941..1bd66266936 100644 --- a/compiler/rustc_trait_selection/src/lib.rs +++ b/compiler/rustc_trait_selection/src/lib.rs @@ -22,11 +22,14 @@ #![feature(control_flow_enum)] #![feature(extract_if)] #![feature(if_let_guard)] +#![feature(iter_intersperse)] #![feature(let_chains)] #![feature(never_type)] #![feature(rustdoc_internals)] +#![feature(try_blocks)] #![feature(type_alias_impl_trait)] #![feature(unwrap_infallible)] +#![feature(yeet_expr)] #![recursion_limit = "512"] // For rustdoc // tidy-alphabetical-end | 
