Add Expr::Underscore

This commit is contained in:
Ryo Yoshida 2022-05-27 02:14:06 +09:00
parent e10799536a
commit c1c867506b
No known key found for this signature in database
GPG key ID: E25698A930586171
3 changed files with 9 additions and 1 deletions

View file

@ -775,6 +775,12 @@ impl<'a> InferenceContext<'a> {
},
},
Expr::MacroStmts { tail } => self.infer_expr_inner(*tail, expected),
Expr::Underscore => {
// Underscore expressions may only appear in assignee expressions,
// which are handled by `infer_assignee_expr()`, so any underscore
// expression reaching this branch is an error.
self.err_ty()
}
};
// use a new type variable if we got unknown here
let ty = self.insert_type_vars_shallow(ty);