1
Fork 0

Start handling pattern types at the HIR -> Ty conversion boundary

This commit is contained in:
Oli Scherer 2023-01-31 12:23:26 +00:00
parent c4efc25bfa
commit 1d6cd8daf0
6 changed files with 36 additions and 7 deletions

View file

@ -7,6 +7,8 @@ use rustc_errors::{
use rustc_macros::{Diagnostic, LintDiagnostic, Subdiagnostic};
use rustc_middle::ty::Ty;
use rustc_span::{symbol::Ident, Span, Symbol};
mod pattern_types;
pub use pattern_types::*;
#[derive(Diagnostic)]
#[diag(hir_analysis_ambiguous_assoc_item)]