Skip to content

Commit

Permalink
Fix type checking of struct fields in patterns of type ty_err
Browse files Browse the repository at this point in the history
Fixes #16338.
Fixed #16401.
  • Loading branch information
Jakub Wieczorek committed Aug 17, 2014
1 parent a12a4dd commit 9b0f89d
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 13 deletions.
20 changes: 7 additions & 13 deletions src/librustc/middle/typeck/check/_match.rs
Expand Up @@ -355,8 +355,7 @@ pub fn check_struct_pat_fields(pcx: &pat_ctxt,
}
}

pub fn check_struct_pat(pcx: &pat_ctxt, _pat_id: ast::NodeId, span: Span,
_expected: ty::t, _path: &ast::Path,
pub fn check_struct_pat(pcx: &pat_ctxt, span: Span,
fields: &[ast::FieldPat], etc: bool,
struct_id: ast::DefId,
substitutions: &subst::Substs) {
Expand Down Expand Up @@ -529,8 +528,7 @@ pub fn check_pat(pcx: &pat_ctxt, pat: &ast::Pat, expected: ty::t) {
},
}

check_struct_pat(pcx, pat.id, pat.span, expected, path,
fields.as_slice(), etc, cid, substs);
check_struct_pat(pcx, pat.span, fields.as_slice(), etc, cid, substs);
}
ty::ty_enum(eid, ref substs) => {
check_struct_like_enum_variant_pat(pcx,
Expand All @@ -557,15 +555,11 @@ pub fn check_pat(pcx: &pat_ctxt, pat: &ast::Pat, expected: ty::t) {
None);
match tcx.def_map.borrow().find(&pat.id) {
Some(def) => {
check_struct_pat(pcx,
pat.id,
pat.span,
ty::mk_err(),
path,
fields.as_slice(),
etc,
def.def_id(),
&subst::Substs::empty());
let item_type = ty::lookup_item_type(tcx, def.def_id());
let substitutions = fcx.infcx().fresh_substs_for_type(
pat.span, &item_type.generics);
check_struct_pat(pcx, pat.span, fields.as_slice(),
etc, def.def_id(), &substitutions);
}
None => {
tcx.sess.span_bug(pat.span,
Expand Down
17 changes: 17 additions & 0 deletions src/test/compile-fail/issue-16338.rs
@@ -0,0 +1,17 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use std::raw::Slice;

fn main() {
let Slice { data: data, len: len } = "foo";
//~^ ERROR mismatched types: expected `&'static str` but found a structure pattern
}

19 changes: 19 additions & 0 deletions src/test/compile-fail/issue-16401.rs
@@ -0,0 +1,19 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use std::raw::Slice;

fn main() {
match () {
Slice { data: data, len: len } => (),
//~^ ERROR mismatched types: expected `()` but found a structure pattern
_ => unreachable!()
}
}

5 comments on commit 9b0f89d

@bors
Copy link
Contributor

@bors bors commented on 9b0f89d Aug 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 9b0f89d Aug 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging jakub-/rust/struct-pat-fields-ty-err = 9b0f89d into auto

@bors
Copy link
Contributor

@bors bors commented on 9b0f89d Aug 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jakub-/rust/struct-pat-fields-ty-err = 9b0f89d merged ok, testing candidate = 776c17f

@bors
Copy link
Contributor

@bors bors commented on 9b0f89d Aug 17, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 776c17f

Please sign in to comment.