diff options
| author | Charles Lew <crlf0710@gmail.com> | 2022-10-22 18:48:20 +0800 |
|---|---|---|
| committer | Charles Lew <crlf0710@gmail.com> | 2022-10-24 17:02:31 +0800 |
| commit | 113e8dfb7293cc070214b42541781b2eeac25ae1 (patch) | |
| tree | c12cf2c41c2492e556f72584a00e492783cdc5b3 /compiler/rustc_errors/src/lib.rs | |
| parent | 56f132565eb31eeb9ec7e1800a6ab2ca354e710e (diff) | |
| download | rust-113e8dfb7293cc070214b42541781b2eeac25ae1.tar.gz rust-113e8dfb7293cc070214b42541781b2eeac25ae1.zip | |
Port `dead_code` lints to be translatable.
Diffstat (limited to 'compiler/rustc_errors/src/lib.rs')
| -rw-r--r-- | compiler/rustc_errors/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/lib.rs b/compiler/rustc_errors/src/lib.rs index 0963ea71f80..2c8a70981bc 100644 --- a/compiler/rustc_errors/src/lib.rs +++ b/compiler/rustc_errors/src/lib.rs @@ -376,7 +376,7 @@ pub use diagnostic::{ DiagnosticStyledString, IntoDiagnosticArg, SubDiagnostic, }; pub use diagnostic_builder::{DiagnosticBuilder, EmissionGuarantee, Noted}; -pub use diagnostic_impls::DiagnosticArgFromDisplay; +pub use diagnostic_impls::{DiagnosticArgFromDisplay, DiagnosticSymbolList}; use std::backtrace::Backtrace; /// A handler deals with errors and other compiler output. |
