rust/compiler/rustc_middle/src/error.rs

91 lines
1.9 KiB
Rust
Raw Normal View History

use rustc_macros::Diagnostic;
use rustc_span::{Span, Symbol};
2022-08-26 03:24:09 +00:00
use crate::ty::Ty;
#[derive(Diagnostic)]
2022-10-22 09:07:54 +00:00
#[diag(middle_drop_check_overflow, code = "E0320")]
2022-08-26 03:24:09 +00:00
#[note]
pub struct DropCheckOverflow<'tcx> {
#[primary_span]
pub span: Span,
pub ty: Ty<'tcx>,
2022-09-05 15:18:18 +00:00
pub overflow_ty: Ty<'tcx>,
2022-08-26 03:24:09 +00:00
}
2022-08-31 12:16:02 +00:00
#[derive(Diagnostic)]
2022-10-22 09:07:54 +00:00
#[diag(middle_opaque_hidden_type_mismatch)]
2022-08-31 12:16:02 +00:00
pub struct OpaqueHiddenTypeMismatch<'tcx> {
pub self_ty: Ty<'tcx>,
pub other_ty: Ty<'tcx>,
#[primary_span]
#[label]
pub other_span: Span,
#[subdiagnostic]
pub sub: TypeMismatchReason,
}
#[derive(Subdiagnostic)]
2022-08-31 12:16:02 +00:00
pub enum TypeMismatchReason {
2022-10-22 09:07:54 +00:00
#[label(middle_conflict_types)]
2022-08-31 12:16:02 +00:00
ConflictType {
#[primary_span]
span: Span,
},
2022-10-22 09:07:54 +00:00
#[note(middle_previous_use_here)]
2022-08-31 12:16:02 +00:00
PreviousUse {
#[primary_span]
span: Span,
},
}
2022-09-01 14:09:45 +00:00
#[derive(Diagnostic)]
2022-10-22 09:07:54 +00:00
#[diag(middle_limit_invalid)]
2022-09-01 14:09:45 +00:00
pub struct LimitInvalid<'a> {
#[primary_span]
pub span: Span,
#[label]
pub value_span: Span,
pub error_str: &'a str,
}
#[derive(Diagnostic)]
#[diag(middle_recursion_limit_reached)]
#[help]
pub struct RecursionLimitReached<'tcx> {
pub ty: Ty<'tcx>,
pub suggested_limit: rustc_session::Limit,
}
#[derive(Diagnostic)]
2022-10-22 09:07:54 +00:00
#[diag(middle_const_eval_non_int)]
pub struct ConstEvalNonIntError {
#[primary_span]
pub span: Span,
}
#[derive(Diagnostic)]
#[diag(middle_strict_coherence_needs_negative_coherence)]
pub(crate) struct StrictCoherenceNeedsNegativeCoherence {
#[primary_span]
pub span: Span,
#[label]
pub attr_span: Option<Span>,
}
2022-11-07 18:47:32 +00:00
#[derive(Diagnostic)]
#[diag(middle_requires_lang_item)]
pub(crate) struct RequiresLangItem {
#[primary_span]
pub span: Option<Span>,
pub name: Symbol,
}
2022-11-07 18:47:32 +00:00
#[derive(Diagnostic)]
#[diag(middle_const_not_used_in_type_alias)]
pub(super) struct ConstNotUsedTraitAlias {
pub ct: String,
#[primary_span]
pub span: Span,
}