mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
Fix #14393
String patterns should have a single constructor of arity 0.
This commit is contained in:
parent
9dca26cf92
commit
76f7eeef52
@ -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, _) => {
|
||||
|
17
src/test/run-pass/issue-14393.rs
Normal file
17
src/test/run-pass/issue-14393.rs
Normal 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) => (),
|
||||
("", _) => (),
|
||||
_ => ()
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user