diff options
| author | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2024-07-05 08:14:40 +0000 |
|---|---|---|
| committer | Oli Scherer <git-spam-no-reply9815368754983@oli-obk.de> | 2024-07-08 19:29:55 +0000 |
| commit | 9e7918f70e3d8dc166034f936420a72ffb946d80 (patch) | |
| tree | 197f964204b7be3adcc47d3e67837215a2d469bb /compiler/rustc_hir_analysis/src/structured_errors.rs | |
| parent | a06e9c83f6bc6b9b69f1b0d9f1ab659f8f03db4d (diff) | |
| download | rust-9e7918f70e3d8dc166034f936420a72ffb946d80.tar.gz rust-9e7918f70e3d8dc166034f936420a72ffb946d80.zip | |
Remove another `StructuredDiag` impl
Diffstat (limited to 'compiler/rustc_hir_analysis/src/structured_errors.rs')
| -rw-r--r-- | compiler/rustc_hir_analysis/src/structured_errors.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/rustc_hir_analysis/src/structured_errors.rs b/compiler/rustc_hir_analysis/src/structured_errors.rs index 61a2400f9e4..af4d9efca5a 100644 --- a/compiler/rustc_hir_analysis/src/structured_errors.rs +++ b/compiler/rustc_hir_analysis/src/structured_errors.rs @@ -1,7 +1,6 @@ -mod missing_cast_for_variadic_arg; mod wrong_number_of_generic_args; -pub use self::{missing_cast_for_variadic_arg::*, wrong_number_of_generic_args::*}; +pub use self::wrong_number_of_generic_args::*; use rustc_errors::{Diag, ErrCode}; use rustc_session::Session; |
