diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-01-19 19:27:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-19 19:27:00 +0100 |
| commit | ae09415fa4e994992d95b702eb876910ded8f19b (patch) | |
| tree | fb730d643f10904842b0aeb100ed181e20365184 /compiler/rustc_interface/src/lib.rs | |
| parent | cad609d9e3a33cfef1727dcb0682e05f1f036afa (diff) | |
| parent | 1dc3ab02cdba905aa1cce73d938c8e825107a8e8 (diff) | |
| download | rust-ae09415fa4e994992d95b702eb876910ded8f19b.tar.gz rust-ae09415fa4e994992d95b702eb876910ded8f19b.zip | |
Rollup merge of #119815 - nagisa:nagisa/polishes-libloading-use-somewhat, r=bjorn3
Format sources into the error message when loading codegen backends cc https://github.com/rust-lang/rustc_codegen_cranelift/issues/1447 cc `@bjorn3`
Diffstat (limited to 'compiler/rustc_interface/src/lib.rs')
| -rw-r--r-- | compiler/rustc_interface/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/lib.rs b/compiler/rustc_interface/src/lib.rs index cfa46447845..764306ce6ec 100644 --- a/compiler/rustc_interface/src/lib.rs +++ b/compiler/rustc_interface/src/lib.rs @@ -1,9 +1,10 @@ #![feature(box_patterns)] #![feature(decl_macro)] +#![feature(error_iter)] #![feature(internal_output_capture)] -#![feature(thread_spawn_unchecked)] #![feature(lazy_cell)] #![feature(let_chains)] +#![feature(thread_spawn_unchecked)] #![feature(try_blocks)] #![recursion_limit = "256"] #![deny(rustc::untranslatable_diagnostic)] |
