rustc: Remove the call to resolve_all_vars when typechecking field exprs

This commit is contained in:
Patrick Walton 2011-06-09 13:56:08 -07:00
parent 3009574165
commit 06d706e197

View file

@ -2111,8 +2111,6 @@ fn check_expr(&@fn_ctxt fcx, &@ast::expr expr) {
check_expr(fcx, base);
auto base_t = expr_ty(fcx.ccx.tcx, base);
base_t = strip_boxes(fcx, expr.span, base_t);
base_t = ty::unify::resolve_all_vars(fcx.ccx.tcx,
fcx.var_bindings, base_t);
alt (structure_of(fcx, expr.span, base_t)) {
case (ty::ty_tup(?args)) {
let uint ix = ty::field_num(fcx.ccx.tcx.sess,