2023-12-10 19:42:30 +00:00
|
|
|
use crate::fluent_generated as fluent;
|
2023-11-28 19:37:02 +00:00
|
|
|
use rustc_errors::DiagnosticArgValue;
|
2022-11-26 20:22:49 +00:00
|
|
|
use rustc_errors::{
|
2023-12-17 10:48:57 +00:00
|
|
|
error_code, AddToDiagnostic, Applicability, DiagCtxt, Diagnostic, DiagnosticBuilder,
|
|
|
|
ErrorGuaranteed, IntoDiagnostic, MultiSpan, SubdiagnosticMessage,
|
2022-11-26 20:22:49 +00:00
|
|
|
};
|
|
|
|
use rustc_macros::{Diagnostic, LintDiagnostic, Subdiagnostic};
|
2022-08-26 13:38:21 +00:00
|
|
|
use rustc_middle::ty::{self, Ty};
|
2023-12-10 21:14:00 +00:00
|
|
|
use rustc_pattern_analysis::{cx::MatchCheckCtxt, errors::Uncovered};
|
2023-02-27 17:43:39 +00:00
|
|
|
use rustc_span::symbol::Symbol;
|
|
|
|
use rustc_span::Span;
|
2022-08-20 11:28:43 +00:00
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unconditional_recursion)]
|
2022-08-20 11:28:43 +00:00
|
|
|
#[help]
|
|
|
|
pub struct UnconditionalRecursion {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2022-11-26 20:22:49 +00:00
|
|
|
#[label(mir_build_unconditional_recursion_call_site_label)]
|
2022-08-20 11:28:43 +00:00
|
|
|
pub call_sites: Vec<Span>,
|
|
|
|
}
|
2022-08-20 20:54:58 +00:00
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_call_to_unsafe_fn_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnCallToUnsafeFunctionRequiresUnsafe<'a> {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub function: &'a str,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_call_to_unsafe_fn_requires_unsafe_nameless)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnCallToUnsafeFunctionRequiresUnsafeNameless {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_inline_assembly_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnUseOfInlineAssemblyRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_initializing_type_with_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnInitializingTypeWithRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_mutable_static_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnUseOfMutableStaticRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_extern_static_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnUseOfExternStaticRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_deref_raw_pointer_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnDerefOfRawPointerRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_union_field_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnAccessToUnionFieldRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_mutation_of_layout_constrained_field_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UnsafeOpInUnsafeFnMutationOfLayoutConstrainedFieldRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_borrow_of_layout_constrained_field_requires_unsafe)]
|
2022-08-20 20:54:58 +00:00
|
|
|
pub struct UnsafeOpInUnsafeFnBorrowOfLayoutConstrainedFieldRequiresUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unsafe_op_in_unsafe_fn_call_to_fn_with_requires_unsafe)]
|
2023-11-28 19:37:02 +00:00
|
|
|
#[help]
|
2022-08-20 20:54:58 +00:00
|
|
|
pub struct UnsafeOpInUnsafeFnCallToFunctionWithRequiresUnsafe<'a> {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub function: &'a str,
|
2023-11-28 19:37:02 +00:00
|
|
|
pub missing_target_features: DiagnosticArgValue<'a>,
|
|
|
|
pub missing_target_features_count: usize,
|
|
|
|
#[note]
|
|
|
|
pub note: Option<()>,
|
|
|
|
pub build_target_features: DiagnosticArgValue<'a>,
|
|
|
|
pub build_target_features_count: usize,
|
2023-10-26 15:39:25 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedLintNote>,
|
2022-08-20 20:54:58 +00:00
|
|
|
}
|
2022-08-24 08:01:53 +00:00
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_call_to_unsafe_fn_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct CallToUnsafeFunctionRequiresUnsafe<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub function: &'a str,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_call_to_unsafe_fn_requires_unsafe_nameless, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct CallToUnsafeFunctionRequiresUnsafeNameless {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_call_to_unsafe_fn_requires_unsafe_unsafe_op_in_unsafe_fn_allowed, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct CallToUnsafeFunctionRequiresUnsafeUnsafeOpInUnsafeFnAllowed<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub function: &'a str,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[diag(
|
2022-11-26 20:22:49 +00:00
|
|
|
mir_build_call_to_unsafe_fn_requires_unsafe_nameless_unsafe_op_in_unsafe_fn_allowed,
|
2022-08-24 08:01:53 +00:00
|
|
|
code = "E0133"
|
|
|
|
)]
|
|
|
|
#[note]
|
|
|
|
pub struct CallToUnsafeFunctionRequiresUnsafeNamelessUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_inline_assembly_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UseOfInlineAssemblyRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_inline_assembly_requires_unsafe_unsafe_op_in_unsafe_fn_allowed, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UseOfInlineAssemblyRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_initializing_type_with_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct InitializingTypeWithRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[diag(
|
2022-11-26 20:22:49 +00:00
|
|
|
mir_build_initializing_type_with_requires_unsafe_unsafe_op_in_unsafe_fn_allowed,
|
2022-08-24 08:01:53 +00:00
|
|
|
code = "E0133"
|
|
|
|
)]
|
|
|
|
#[note]
|
|
|
|
pub struct InitializingTypeWithRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_mutable_static_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UseOfMutableStaticRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_mutable_static_requires_unsafe_unsafe_op_in_unsafe_fn_allowed, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UseOfMutableStaticRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_extern_static_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UseOfExternStaticRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_extern_static_requires_unsafe_unsafe_op_in_unsafe_fn_allowed, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct UseOfExternStaticRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_deref_raw_pointer_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct DerefOfRawPointerRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_deref_raw_pointer_requires_unsafe_unsafe_op_in_unsafe_fn_allowed, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct DerefOfRawPointerRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_union_field_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct AccessToUnionFieldRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_union_field_requires_unsafe_unsafe_op_in_unsafe_fn_allowed, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct AccessToUnionFieldRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_mutation_of_layout_constrained_field_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct MutationOfLayoutConstrainedFieldRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[diag(
|
2022-11-26 20:22:49 +00:00
|
|
|
mir_build_mutation_of_layout_constrained_field_requires_unsafe_unsafe_op_in_unsafe_fn_allowed,
|
2022-08-24 08:01:53 +00:00
|
|
|
code = "E0133"
|
|
|
|
)]
|
|
|
|
#[note]
|
|
|
|
pub struct MutationOfLayoutConstrainedFieldRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_borrow_of_layout_constrained_field_requires_unsafe, code = "E0133")]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[note]
|
|
|
|
pub struct BorrowOfLayoutConstrainedFieldRequiresUnsafe {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-08-24 08:01:53 +00:00
|
|
|
#[diag(
|
2022-11-26 20:22:49 +00:00
|
|
|
mir_build_borrow_of_layout_constrained_field_requires_unsafe_unsafe_op_in_unsafe_fn_allowed,
|
2022-08-24 08:01:53 +00:00
|
|
|
code = "E0133"
|
|
|
|
)]
|
|
|
|
#[note]
|
|
|
|
pub struct BorrowOfLayoutConstrainedFieldRequiresUnsafeUnsafeOpInUnsafeFnAllowed {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_call_to_fn_with_requires_unsafe, code = "E0133")]
|
2023-11-28 19:37:02 +00:00
|
|
|
#[help]
|
2022-08-24 08:01:53 +00:00
|
|
|
pub struct CallToFunctionWithRequiresUnsafe<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub function: &'a str,
|
2023-11-28 19:37:02 +00:00
|
|
|
pub missing_target_features: DiagnosticArgValue<'a>,
|
|
|
|
pub missing_target_features_count: usize,
|
|
|
|
#[note]
|
|
|
|
pub note: Option<()>,
|
|
|
|
pub build_target_features: DiagnosticArgValue<'a>,
|
|
|
|
pub build_target_features_count: usize,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_call_to_fn_with_requires_unsafe_unsafe_op_in_unsafe_fn_allowed, code = "E0133")]
|
2023-11-28 19:37:02 +00:00
|
|
|
#[help]
|
2022-08-24 08:01:53 +00:00
|
|
|
pub struct CallToFunctionWithRequiresUnsafeUnsafeOpInUnsafeFnAllowed<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub function: &'a str,
|
2023-11-28 19:37:02 +00:00
|
|
|
pub missing_target_features: DiagnosticArgValue<'a>,
|
|
|
|
pub missing_target_features_count: usize,
|
|
|
|
#[note]
|
|
|
|
pub note: Option<()>,
|
|
|
|
pub build_target_features: DiagnosticArgValue<'a>,
|
|
|
|
pub build_target_features_count: usize,
|
2023-07-15 02:06:32 +00:00
|
|
|
#[subdiagnostic]
|
|
|
|
pub unsafe_not_inherited_note: Option<UnsafeNotInheritedNote>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subdiagnostic)]
|
|
|
|
#[label(mir_build_unsafe_not_inherited)]
|
|
|
|
pub struct UnsafeNotInheritedNote {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
2022-08-24 08:01:53 +00:00
|
|
|
}
|
2022-08-24 17:16:50 +00:00
|
|
|
|
2023-10-26 15:39:25 +00:00
|
|
|
pub struct UnsafeNotInheritedLintNote {
|
|
|
|
pub signature_span: Span,
|
|
|
|
pub body_span: Span,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AddToDiagnostic for UnsafeNotInheritedLintNote {
|
|
|
|
fn add_to_diagnostic_with<F>(self, diag: &mut Diagnostic, _: F)
|
|
|
|
where
|
|
|
|
F: Fn(&mut Diagnostic, SubdiagnosticMessage) -> SubdiagnosticMessage,
|
|
|
|
{
|
|
|
|
diag.span_note(self.signature_span, fluent::mir_build_unsafe_fn_safe_body);
|
|
|
|
let body_start = self.body_span.shrink_to_lo();
|
|
|
|
let body_end = self.body_span.shrink_to_hi();
|
|
|
|
diag.tool_only_multipart_suggestion(
|
|
|
|
fluent::mir_build_wrap_suggestion,
|
|
|
|
vec![(body_start, "{ unsafe ".into()), (body_end, "}".into())],
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-24 17:16:50 +00:00
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unused_unsafe)]
|
2022-08-24 17:16:50 +00:00
|
|
|
pub struct UnusedUnsafe {
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub enclosing: Option<UnusedUnsafeEnclosing>,
|
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Subdiagnostic)]
|
2022-08-24 17:16:50 +00:00
|
|
|
pub enum UnusedUnsafeEnclosing {
|
2022-11-26 20:22:49 +00:00
|
|
|
#[label(mir_build_unused_unsafe_enclosing_block_label)]
|
2022-08-24 17:16:50 +00:00
|
|
|
Block {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
},
|
|
|
|
}
|
2022-08-26 13:38:21 +00:00
|
|
|
|
|
|
|
pub(crate) struct NonExhaustivePatternsTypeNotEmpty<'p, 'tcx, 'm> {
|
|
|
|
pub cx: &'m MatchCheckCtxt<'p, 'tcx>,
|
|
|
|
pub expr_span: Span,
|
|
|
|
pub span: Span,
|
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
impl<'a> IntoDiagnostic<'a> for NonExhaustivePatternsTypeNotEmpty<'_, '_, '_> {
|
2023-12-17 10:48:57 +00:00
|
|
|
fn into_diagnostic(self, handler: &'a DiagCtxt) -> DiagnosticBuilder<'_, ErrorGuaranteed> {
|
2022-11-26 20:22:49 +00:00
|
|
|
let mut diag = handler.struct_span_err_with_code(
|
2022-08-26 13:38:21 +00:00
|
|
|
self.span,
|
2022-10-13 09:13:02 +00:00
|
|
|
fluent::mir_build_non_exhaustive_patterns_type_not_empty,
|
2022-08-26 13:38:21 +00:00
|
|
|
error_code!(E0004),
|
|
|
|
);
|
|
|
|
|
|
|
|
let peeled_ty = self.ty.peel_refs();
|
|
|
|
diag.set_arg("ty", self.ty);
|
|
|
|
diag.set_arg("peeled_ty", peeled_ty);
|
|
|
|
|
|
|
|
if let ty::Adt(def, _) = peeled_ty.kind() {
|
|
|
|
let def_span = self
|
|
|
|
.cx
|
|
|
|
.tcx
|
|
|
|
.hir()
|
|
|
|
.get_if_local(def.did())
|
|
|
|
.and_then(|node| node.ident())
|
|
|
|
.map(|ident| ident.span)
|
|
|
|
.unwrap_or_else(|| self.cx.tcx.def_span(def.did()));
|
|
|
|
|
|
|
|
// workaround to make test pass
|
|
|
|
let mut span: MultiSpan = def_span.into();
|
|
|
|
span.push_span_label(def_span, "");
|
|
|
|
|
2022-10-13 09:13:02 +00:00
|
|
|
diag.span_note(span, fluent::mir_build_def_note);
|
2022-08-26 13:38:21 +00:00
|
|
|
}
|
|
|
|
|
2023-04-15 18:49:54 +00:00
|
|
|
let is_variant_list_non_exhaustive = matches!(self.ty.kind(),
|
|
|
|
ty::Adt(def, _) if def.is_variant_list_non_exhaustive() && !def.did().is_local());
|
2022-08-26 13:38:21 +00:00
|
|
|
if is_variant_list_non_exhaustive {
|
2022-10-13 09:13:02 +00:00
|
|
|
diag.note(fluent::mir_build_non_exhaustive_type_note);
|
2022-08-26 13:38:21 +00:00
|
|
|
} else {
|
2022-10-13 09:13:02 +00:00
|
|
|
diag.note(fluent::mir_build_type_note);
|
2022-08-26 13:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if let ty::Ref(_, sub_ty, _) = self.ty.kind() {
|
2022-11-26 20:22:49 +00:00
|
|
|
if !sub_ty.is_inhabited_from(self.cx.tcx, self.cx.module, self.cx.param_env) {
|
2022-10-13 09:13:02 +00:00
|
|
|
diag.note(fluent::mir_build_reference_note);
|
2022-08-26 13:38:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut suggestion = None;
|
|
|
|
let sm = self.cx.tcx.sess.source_map();
|
|
|
|
if self.span.eq_ctxt(self.expr_span) {
|
|
|
|
// Get the span for the empty match body `{}`.
|
|
|
|
let (indentation, more) = if let Some(snippet) = sm.indentation_before(self.span) {
|
2023-07-25 21:17:39 +00:00
|
|
|
(format!("\n{snippet}"), " ")
|
2022-08-26 13:38:21 +00:00
|
|
|
} else {
|
|
|
|
(" ".to_string(), "")
|
|
|
|
};
|
|
|
|
suggestion = Some((
|
|
|
|
self.span.shrink_to_hi().with_hi(self.expr_span.hi()),
|
2023-07-25 21:17:39 +00:00
|
|
|
format!(" {{{indentation}{more}_ => todo!(),{indentation}}}",),
|
2022-08-26 13:38:21 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some((span, sugg)) = suggestion {
|
|
|
|
diag.span_suggestion_verbose(
|
|
|
|
span,
|
2022-10-13 09:13:02 +00:00
|
|
|
fluent::mir_build_suggestion,
|
2022-08-26 13:38:21 +00:00
|
|
|
sugg,
|
|
|
|
Applicability::HasPlaceholders,
|
|
|
|
);
|
|
|
|
} else {
|
2022-10-13 09:13:02 +00:00
|
|
|
diag.help(fluent::mir_build_help);
|
2022-08-26 13:38:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
diag
|
|
|
|
}
|
|
|
|
}
|
2022-08-26 16:30:33 +00:00
|
|
|
|
2023-06-28 05:49:21 +00:00
|
|
|
#[derive(Subdiagnostic)]
|
|
|
|
#[note(mir_build_non_exhaustive_match_all_arms_guarded)]
|
|
|
|
pub struct NonExhaustiveMatchAllArmsGuarded;
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_static_in_pattern, code = "E0158")]
|
2022-08-26 16:30:33 +00:00
|
|
|
pub struct StaticInPattern {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_assoc_const_in_pattern, code = "E0158")]
|
2022-08-26 16:30:33 +00:00
|
|
|
pub struct AssocConstInPattern {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_const_param_in_pattern, code = "E0158")]
|
2022-08-26 16:30:33 +00:00
|
|
|
pub struct ConstParamInPattern {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_non_const_path, code = "E0080")]
|
2022-08-26 16:30:33 +00:00
|
|
|
pub struct NonConstPath {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
2022-08-27 19:06:06 +00:00
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_unreachable_pattern)]
|
2022-08-27 19:06:06 +00:00
|
|
|
pub struct UnreachablePattern {
|
|
|
|
#[label]
|
|
|
|
pub span: Option<Span>,
|
2022-10-13 09:13:02 +00:00
|
|
|
#[label(mir_build_catchall_label)]
|
2022-08-27 19:06:06 +00:00
|
|
|
pub catchall: Option<Span>,
|
|
|
|
}
|
2022-08-27 19:17:10 +00:00
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_const_pattern_depends_on_generic_parameter)]
|
2022-08-27 19:17:10 +00:00
|
|
|
pub struct ConstPatternDependsOnGenericParameter {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
2022-08-27 19:25:09 +00:00
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_could_not_eval_const_pattern)]
|
2022-08-27 19:25:09 +00:00
|
|
|
pub struct CouldNotEvalConstPattern {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
2022-08-27 19:48:18 +00:00
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_lower_range_bound_must_be_less_than_or_equal_to_upper, code = "E0030")]
|
2022-08-27 19:48:18 +00:00
|
|
|
pub struct LowerRangeBoundMustBeLessThanOrEqualToUpper {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
2022-10-13 09:13:02 +00:00
|
|
|
#[note(mir_build_teach_note)]
|
2022-08-27 19:48:18 +00:00
|
|
|
pub teach: Option<()>,
|
|
|
|
}
|
|
|
|
|
2023-01-09 07:10:17 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_literal_in_range_out_of_bounds)]
|
|
|
|
pub struct LiteralOutOfRange<'tcx> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub ty: Ty<'tcx>,
|
2023-10-11 02:54:21 +00:00
|
|
|
pub min: i128,
|
2023-01-09 07:10:17 +00:00
|
|
|
pub max: u128,
|
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_lower_range_bound_must_be_less_than_upper, code = "E0579")]
|
2022-08-27 19:48:18 +00:00
|
|
|
pub struct LowerRangeBoundMustBeLessThanUpper {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
2022-08-28 18:48:09 +00:00
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_leading_irrefutable_let_patterns)]
|
2022-08-28 18:48:09 +00:00
|
|
|
#[note]
|
|
|
|
#[help]
|
|
|
|
pub struct LeadingIrrefutableLetPatterns {
|
|
|
|
pub count: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_trailing_irrefutable_let_patterns)]
|
2022-08-28 18:48:09 +00:00
|
|
|
#[note]
|
|
|
|
#[help]
|
|
|
|
pub struct TrailingIrrefutableLetPatterns {
|
|
|
|
pub count: usize,
|
|
|
|
}
|
2022-08-29 07:06:50 +00:00
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_bindings_with_variant_name, code = "E0170")]
|
2022-08-29 07:06:50 +00:00
|
|
|
pub struct BindingsWithVariantName {
|
2023-02-27 17:43:39 +00:00
|
|
|
#[suggestion(code = "{ty_path}::{name}", applicability = "machine-applicable")]
|
2022-08-29 07:06:50 +00:00
|
|
|
pub suggestion: Option<Span>,
|
|
|
|
pub ty_path: String,
|
2023-02-27 17:43:39 +00:00
|
|
|
pub name: Symbol,
|
2022-08-29 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_irrefutable_let_patterns_if_let)]
|
2022-08-29 08:21:25 +00:00
|
|
|
#[note]
|
|
|
|
#[help]
|
|
|
|
pub struct IrrefutableLetPatternsIfLet {
|
|
|
|
pub count: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_irrefutable_let_patterns_if_let_guard)]
|
2022-08-29 08:21:25 +00:00
|
|
|
#[note]
|
|
|
|
#[help]
|
|
|
|
pub struct IrrefutableLetPatternsIfLetGuard {
|
|
|
|
pub count: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_irrefutable_let_patterns_let_else)]
|
2022-08-29 08:21:25 +00:00
|
|
|
#[note]
|
|
|
|
#[help]
|
|
|
|
pub struct IrrefutableLetPatternsLetElse {
|
|
|
|
pub count: usize,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-11-26 20:22:49 +00:00
|
|
|
#[diag(mir_build_irrefutable_let_patterns_while_let)]
|
2022-08-29 08:21:25 +00:00
|
|
|
#[note]
|
|
|
|
#[help]
|
|
|
|
pub struct IrrefutableLetPatternsWhileLet {
|
|
|
|
pub count: usize,
|
|
|
|
}
|
2022-08-30 17:01:28 +00:00
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_borrow_of_moved_value)]
|
2022-08-30 17:01:28 +00:00
|
|
|
pub struct BorrowOfMovedValue<'tcx> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
2022-10-13 09:13:02 +00:00
|
|
|
#[label(mir_build_occurs_because_label)]
|
2022-08-30 17:01:28 +00:00
|
|
|
pub binding_span: Span,
|
2022-10-13 09:13:02 +00:00
|
|
|
#[label(mir_build_value_borrowed_label)]
|
2022-08-30 17:01:28 +00:00
|
|
|
pub conflicts_ref: Vec<Span>,
|
2023-02-27 17:43:39 +00:00
|
|
|
pub name: Symbol,
|
2022-08-30 17:01:28 +00:00
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
#[suggestion(code = "ref ", applicability = "machine-applicable")]
|
|
|
|
pub suggest_borrowing: Option<Span>,
|
|
|
|
}
|
2022-08-30 17:38:10 +00:00
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_multiple_mut_borrows)]
|
2022-08-30 17:38:10 +00:00
|
|
|
pub struct MultipleMutBorrows {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
2022-12-17 18:20:44 +00:00
|
|
|
#[subdiagnostic]
|
2023-04-10 20:02:52 +00:00
|
|
|
pub occurrences: Vec<Conflict>,
|
2023-01-17 12:48:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_already_borrowed)]
|
|
|
|
pub struct AlreadyBorrowed {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
#[subdiagnostic]
|
2023-04-10 20:02:52 +00:00
|
|
|
pub occurrences: Vec<Conflict>,
|
2023-01-17 12:48:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_already_mut_borrowed)]
|
|
|
|
pub struct AlreadyMutBorrowed {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
#[subdiagnostic]
|
2023-04-10 20:02:52 +00:00
|
|
|
pub occurrences: Vec<Conflict>,
|
2023-01-17 12:48:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_moved_while_borrowed)]
|
|
|
|
pub struct MovedWhileBorrowed {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
#[subdiagnostic]
|
2023-04-10 20:02:52 +00:00
|
|
|
pub occurrences: Vec<Conflict>,
|
2022-08-30 17:38:10 +00:00
|
|
|
}
|
|
|
|
|
2022-11-26 20:22:49 +00:00
|
|
|
#[derive(Subdiagnostic)]
|
2023-01-17 12:48:43 +00:00
|
|
|
pub enum Conflict {
|
|
|
|
#[label(mir_build_mutable_borrow)]
|
|
|
|
Mut {
|
2022-08-30 17:38:10 +00:00
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
2023-02-27 17:43:39 +00:00
|
|
|
name: Symbol,
|
2022-08-30 17:38:10 +00:00
|
|
|
},
|
2023-01-17 12:48:43 +00:00
|
|
|
#[label(mir_build_borrow)]
|
|
|
|
Ref {
|
2022-08-30 17:38:10 +00:00
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
2023-02-27 17:43:39 +00:00
|
|
|
name: Symbol,
|
2022-08-30 17:38:10 +00:00
|
|
|
},
|
2023-01-17 12:48:43 +00:00
|
|
|
#[label(mir_build_moved)]
|
2022-08-30 17:38:10 +00:00
|
|
|
Moved {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
2023-02-27 17:43:39 +00:00
|
|
|
name: Symbol,
|
2022-08-30 17:38:10 +00:00
|
|
|
},
|
|
|
|
}
|
2022-12-19 23:28:33 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_union_pattern)]
|
|
|
|
pub struct UnionPattern {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_type_not_structural)]
|
2023-03-27 14:14:08 +00:00
|
|
|
#[note(mir_build_type_not_structural_tip)]
|
|
|
|
#[note(mir_build_type_not_structural_more_info)]
|
2022-12-19 23:28:33 +00:00
|
|
|
pub struct TypeNotStructural<'tcx> {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub non_sm_ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_invalid_pattern)]
|
|
|
|
pub struct InvalidPattern<'tcx> {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub non_sm_ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_unsized_pattern)]
|
|
|
|
pub struct UnsizedPattern<'tcx> {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub non_sm_ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
|
|
|
#[diag(mir_build_float_pattern)]
|
|
|
|
pub struct FloatPattern;
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
|
|
|
#[diag(mir_build_pointer_pattern)]
|
|
|
|
pub struct PointerPattern;
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
|
|
|
#[diag(mir_build_indirect_structural_match)]
|
2023-03-27 14:14:08 +00:00
|
|
|
#[note(mir_build_type_not_structural_tip)]
|
|
|
|
#[note(mir_build_type_not_structural_more_info)]
|
2022-12-19 23:28:33 +00:00
|
|
|
pub struct IndirectStructuralMatch<'tcx> {
|
|
|
|
pub non_sm_ty: Ty<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
|
|
|
#[diag(mir_build_nontrivial_structural_match)]
|
2023-03-27 14:14:08 +00:00
|
|
|
#[note(mir_build_type_not_structural_tip)]
|
|
|
|
#[note(mir_build_type_not_structural_more_info)]
|
2022-12-19 23:28:33 +00:00
|
|
|
pub struct NontrivialStructuralMatch<'tcx> {
|
|
|
|
pub non_sm_ty: Ty<'tcx>,
|
2023-09-16 12:15:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
|
|
|
#[diag(mir_build_non_partial_eq_match)]
|
|
|
|
pub struct NonPartialEqMatch<'tcx> {
|
|
|
|
pub non_peq_ty: Ty<'tcx>,
|
2022-12-19 23:28:33 +00:00
|
|
|
}
|
2022-12-20 15:43:34 +00:00
|
|
|
|
2022-12-23 20:02:23 +00:00
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_pattern_not_covered, code = "E0005")]
|
|
|
|
pub(crate) struct PatternNotCovered<'s, 'tcx> {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub origin: &'s str,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub uncovered: Uncovered<'tcx>,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub inform: Option<Inform>,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub interpreted_as_const: Option<InterpretedAsConst>,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub adt_defined_here: Option<AdtDefinedHere<'tcx>>,
|
2023-04-09 08:09:43 +00:00
|
|
|
#[note(mir_build_privately_uninhabited)]
|
|
|
|
pub witness_1_is_privately_uninhabited: Option<()>,
|
2022-10-13 09:13:02 +00:00
|
|
|
#[note(mir_build_pattern_ty)]
|
2022-12-23 20:02:23 +00:00
|
|
|
pub _p: (),
|
|
|
|
pub pattern_ty: Ty<'tcx>,
|
|
|
|
#[subdiagnostic]
|
2022-12-23 21:23:37 +00:00
|
|
|
pub let_suggestion: Option<SuggestLet>,
|
2022-12-23 20:02:23 +00:00
|
|
|
#[subdiagnostic]
|
2023-01-13 01:14:26 +00:00
|
|
|
pub misc_suggestion: Option<MiscPatternSuggestion>,
|
2022-12-23 20:02:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subdiagnostic)]
|
|
|
|
#[note(mir_build_inform_irrefutable)]
|
|
|
|
#[note(mir_build_more_information)]
|
|
|
|
pub struct Inform;
|
|
|
|
|
|
|
|
pub struct AdtDefinedHere<'tcx> {
|
|
|
|
pub adt_def_span: Span,
|
|
|
|
pub ty: Ty<'tcx>,
|
|
|
|
pub variants: Vec<Variant>,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct Variant {
|
|
|
|
pub span: Span,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> AddToDiagnostic for AdtDefinedHere<'tcx> {
|
|
|
|
fn add_to_diagnostic_with<F>(self, diag: &mut Diagnostic, _: F)
|
|
|
|
where
|
|
|
|
F: Fn(&mut Diagnostic, SubdiagnosticMessage) -> SubdiagnosticMessage,
|
|
|
|
{
|
|
|
|
diag.set_arg("ty", self.ty);
|
|
|
|
let mut spans = MultiSpan::from(self.adt_def_span);
|
|
|
|
|
|
|
|
for Variant { span } in self.variants {
|
2022-10-13 09:13:02 +00:00
|
|
|
spans.push_span_label(span, fluent::mir_build_variant_defined_here);
|
2022-12-23 20:02:23 +00:00
|
|
|
}
|
|
|
|
|
2022-10-13 09:13:02 +00:00
|
|
|
diag.span_note(spans, fluent::mir_build_adt_defined_here);
|
2022-12-23 20:02:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subdiagnostic)]
|
|
|
|
#[suggestion(
|
|
|
|
mir_build_interpreted_as_const,
|
|
|
|
code = "{variable}_var",
|
|
|
|
applicability = "maybe-incorrect"
|
|
|
|
)]
|
|
|
|
#[label(mir_build_confused)]
|
|
|
|
pub struct InterpretedAsConst {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub variable: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subdiagnostic)]
|
2022-12-23 21:23:37 +00:00
|
|
|
pub enum SuggestLet {
|
2022-12-23 20:02:23 +00:00
|
|
|
#[multipart_suggestion(mir_build_suggest_if_let, applicability = "has-placeholders")]
|
2022-12-23 21:23:37 +00:00
|
|
|
If {
|
2022-12-23 20:02:23 +00:00
|
|
|
#[suggestion_part(code = "if ")]
|
|
|
|
start_span: Span,
|
|
|
|
#[suggestion_part(code = " {{ todo!() }}")]
|
|
|
|
semi_span: Span,
|
|
|
|
count: usize,
|
|
|
|
},
|
2022-12-23 21:23:37 +00:00
|
|
|
#[suggestion(
|
|
|
|
mir_build_suggest_let_else,
|
|
|
|
code = " else {{ todo!() }}",
|
|
|
|
applicability = "has-placeholders"
|
|
|
|
)]
|
|
|
|
Else {
|
|
|
|
#[primary_span]
|
2022-12-23 20:02:23 +00:00
|
|
|
end_span: Span,
|
|
|
|
count: usize,
|
|
|
|
},
|
|
|
|
}
|
2023-01-13 01:14:26 +00:00
|
|
|
|
|
|
|
#[derive(Subdiagnostic)]
|
|
|
|
pub enum MiscPatternSuggestion {
|
|
|
|
#[suggestion(
|
|
|
|
mir_build_suggest_attempted_int_lit,
|
|
|
|
code = "_",
|
|
|
|
applicability = "maybe-incorrect"
|
|
|
|
)]
|
|
|
|
AttemptedIntegerLiteral {
|
|
|
|
#[primary_span]
|
|
|
|
start_span: Span,
|
|
|
|
},
|
|
|
|
}
|
2023-02-27 01:32:07 +00:00
|
|
|
|
|
|
|
#[derive(Diagnostic)]
|
|
|
|
#[diag(mir_build_rustc_box_attribute_error)]
|
|
|
|
pub struct RustcBoxAttributeError {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub reason: RustcBoxAttrReason,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Subdiagnostic)]
|
|
|
|
pub enum RustcBoxAttrReason {
|
|
|
|
#[note(mir_build_attributes)]
|
|
|
|
Attributes,
|
|
|
|
#[note(mir_build_not_box)]
|
|
|
|
NotBoxNew,
|
|
|
|
#[note(mir_build_missing_box)]
|
|
|
|
MissingBox,
|
|
|
|
}
|