rust/compiler/rustc_middle/src/error.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.1 KiB
Rust
Raw Normal View History

use rustc_macros::Diagnostic;
2022-08-26 03:24:09 +00:00
use rustc_span::Span;
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)]
2022-10-22 09:07:54 +00:00
#[diag(middle_const_eval_non_int)]
pub struct ConstEvalNonIntError {
#[primary_span]
pub span: Span,
}