String patterns should have a single constructor of arity 0.
This commit is contained in:
Jakub Wieczorek 2014-06-09 01:28:26 +02:00
parent 9dca26cf92
commit 76f7eeef52
2 changed files with 19 additions and 0 deletions

View File

@ -240,6 +240,7 @@ fn construct_witness(cx: &MatchCheckCtxt, ctor: &ctor, pats: Vec<Gc<Pat>>, lty:
&vec(_) => PatVec(pats, None, vec!()),
_ => unreachable!()
},
ty::ty_str => PatWild,
_ => {
assert_eq!(pats.len(), 1);
PatRegion(pats.get(0).clone())
@ -479,6 +480,7 @@ fn constructor_arity(cx: &MatchCheckCtxt, ctor: &ctor, ty: ty::t) -> uint {
vec(n) => n,
_ => 0u
},
ty::ty_str => 0u,
_ => 1u
},
ty::ty_enum(eid, _) => {

View File

@ -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.
fn main() {
match ("", 1u) {
(_, 42u) => (),
("", _) => (),
_ => ()
}
}