Add diagnostic struct for const eval error in rustc_middle

Co-authored-by: Michael Goulet <michael@errs.io>
This commit is contained in:
pierwill
2022-10-02 16:02:57 -05:00
parent f47e9af824
commit b9c0467e0c
3 changed files with 13 additions and 5 deletions

View File

@@ -48,3 +48,10 @@ pub struct LimitInvalid<'a> {
pub value_span: Span,
pub error_str: &'a str,
}
#[derive(Diagnostic)]
#[diag(middle::const_eval_non_int)]
pub struct ConstEvalNonIntError {
#[primary_span]
pub span: Span,
}