should not try to apply field accessing on enum
This commit is contained in:
parent
7cfcefd1fb
commit
b71c8b64b5
1 changed files with 11 additions and 7 deletions
|
@ -1545,7 +1545,10 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
normalized_ty.kind,
|
||||
);
|
||||
if let ty::Adt(def, _) = normalized_ty.kind {
|
||||
if def.non_enum_variant().fields.iter().any(|field| field.ident == field_ident) {
|
||||
// no field access on enum type
|
||||
if !def.is_enum() {
|
||||
if def.non_enum_variant().fields.iter().any(|field| field.ident == field_ident)
|
||||
{
|
||||
err.span_suggestion_verbose(
|
||||
base.span.shrink_to_hi(),
|
||||
"consider awaiting before field access",
|
||||
|
@ -1556,6 +1559,7 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn ban_nonexisting_field(
|
||||
&self,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue