Skip to content

Commit 1850ba7

Browse files
committed
Remove unused diagnostic struct
1 parent d3d145e commit 1850ba7

File tree

4 files changed

+0
-75
lines changed

4 files changed

+0
-75
lines changed

compiler/rustc_builtin_macros/src/errors.rs

-21
Original file line numberDiff line numberDiff line change
@@ -136,27 +136,6 @@ pub(crate) struct BenchSig {
136136
pub(crate) span: Span,
137137
}
138138

139-
#[derive(Diagnostic)]
140-
#[diag(builtin_macros_test_arg_non_lifetime)]
141-
pub(crate) struct TestArgNonLifetime {
142-
#[primary_span]
143-
pub(crate) span: Span,
144-
}
145-
146-
#[derive(Diagnostic)]
147-
#[diag(builtin_macros_should_panic)]
148-
pub(crate) struct ShouldPanic {
149-
#[primary_span]
150-
pub(crate) span: Span,
151-
}
152-
153-
#[derive(Diagnostic)]
154-
#[diag(builtin_macros_test_args)]
155-
pub(crate) struct TestArgs {
156-
#[primary_span]
157-
pub(crate) span: Span,
158-
}
159-
160139
#[derive(Diagnostic)]
161140
#[diag(builtin_macros_alloc_must_statics)]
162141
pub(crate) struct AllocMustStatics {

compiler/rustc_hir_analysis/src/errors.rs

-7
Original file line numberDiff line numberDiff line change
@@ -1004,13 +1004,6 @@ pub(crate) struct StaticSpecialize {
10041004
pub span: Span,
10051005
}
10061006

1007-
#[derive(Diagnostic)]
1008-
#[diag(hir_analysis_missing_tilde_const)]
1009-
pub(crate) struct MissingTildeConst {
1010-
#[primary_span]
1011-
pub span: Span,
1012-
}
1013-
10141007
#[derive(Diagnostic)]
10151008
pub(crate) enum DropImplPolarity {
10161009
#[diag(hir_analysis_drop_impl_negative)]

compiler/rustc_parse/src/errors.rs

-8
Original file line numberDiff line numberDiff line change
@@ -557,14 +557,6 @@ pub(crate) struct CatchAfterTry {
557557
pub span: Span,
558558
}
559559

560-
#[derive(Diagnostic)]
561-
#[diag(parse_gen_fn)]
562-
#[help]
563-
pub(crate) struct GenFn {
564-
#[primary_span]
565-
pub span: Span,
566-
}
567-
568560
#[derive(Diagnostic)]
569561
#[diag(parse_comma_after_base_struct)]
570562
#[note]

compiler/rustc_resolve/src/errors.rs

-39
Original file line numberDiff line numberDiff line change
@@ -7,32 +7,6 @@ use rustc_span::{
77

88
use crate::{late::PatternSource, Res};
99

10-
#[derive(Diagnostic)]
11-
#[diag(resolve_parent_module_reset_for_binding, code = E0637)]
12-
pub(crate) struct ParentModuleResetForBinding;
13-
14-
#[derive(Diagnostic)]
15-
#[diag(resolve_ampersand_used_without_explicit_lifetime_name, code = E0637)]
16-
#[note]
17-
pub(crate) struct AmpersandUsedWithoutExplicitLifetimeName(#[primary_span] pub(crate) Span);
18-
19-
#[derive(Diagnostic)]
20-
#[diag(resolve_underscore_lifetime_name_cannot_be_used_here, code = E0637)]
21-
#[note]
22-
pub(crate) struct UnderscoreLifetimeNameCannotBeUsedHere(#[primary_span] pub(crate) Span);
23-
24-
#[derive(Diagnostic)]
25-
#[diag(resolve_crate_may_not_be_imported)]
26-
pub(crate) struct CrateMayNotBeImported(#[primary_span] pub(crate) Span);
27-
28-
#[derive(Diagnostic)]
29-
#[diag(resolve_crate_root_imports_must_be_named_explicitly)]
30-
pub(crate) struct CrateRootNamesMustBeNamedExplicitly(#[primary_span] pub(crate) Span);
31-
32-
#[derive(Diagnostic)]
33-
#[diag(resolve_crate_root_imports_must_be_named_explicitly)]
34-
pub(crate) struct ResolutionError(#[primary_span] pub(crate) Span);
35-
3610
#[derive(Diagnostic)]
3711
#[diag(resolve_generic_params_from_outer_item, code = E0401)]
3812
pub(crate) struct GenericParamsFromOuterItem {
@@ -467,19 +441,6 @@ pub(crate) struct UnreachableLabelSubLabelUnreachable {
467441
pub(crate) ident_span: Span,
468442
}
469443

470-
#[derive(Diagnostic)]
471-
#[diag(resolve_trait_impl_mismatch)]
472-
pub(crate) struct TraitImplMismatch {
473-
#[primary_span]
474-
#[label]
475-
pub(crate) span: Span,
476-
pub(crate) name: Symbol,
477-
pub(crate) kind: String,
478-
#[label(resolve_label_trait_item)]
479-
pub(crate) trait_item_span: Span,
480-
pub(crate) trait_path: String,
481-
}
482-
483444
#[derive(Diagnostic)]
484445
#[diag(resolve_invalid_asm_sym)]
485446
#[help]

0 commit comments

Comments
 (0)