diff options
| author | mejrs <> | 2023-01-05 03:39:07 +0100 |
|---|---|---|
| committer | mejrs <> | 2023-01-05 03:39:07 +0100 |
| commit | 0b5d6ae5dbbbe6b05a85bdcccc8aedbb96feedf4 (patch) | |
| tree | b1a108e309761ac420c638d3be37b3a7856a22ab /compiler/rustc_errors/src/lib.rs | |
| parent | 3b1c8a94a4e8a6ba8bc7b39cc3580db9e5b72295 (diff) | |
| download | rust-0b5d6ae5dbbbe6b05a85bdcccc8aedbb96feedf4.tar.gz rust-0b5d6ae5dbbbe6b05a85bdcccc8aedbb96feedf4.zip | |
Improve fluent error messages
Diffstat (limited to 'compiler/rustc_errors/src/lib.rs')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 136c360201e..6f411c5174a 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -11,6 +11,10 @@ #![feature(never_type)] #![feature(result_option_inspect)] #![feature(rustc_attrs)] +#![feature(yeet_expr)] +#![feature(try_blocks)] +#![feature(box_patterns)] +#![feature(error_reporter)] #![allow(incomplete_features)] #[macro_use] @@ -55,6 +59,7 @@ mod diagnostic; mod diagnostic_builder; mod diagnostic_impls; pub mod emitter; +pub mod error; pub mod json; mod lock; pub mod registry; |
