Never expand specialized columns that only contain wild patterns in them

Doing so would incur deeply nested expansion of the tree with no useful
side effects. This is problematic for "wide" data types such as structs
with dozens of fields but where only a few are actually being matched or bound.
Most notably, matching a fixed slice would use a number of stack frames that
grows with the number of elements in the slice.

Fixes #17877.
This commit is contained in:
Jakub Wieczorek 2014-10-11 14:05:16 +02:00
parent 86509d8d7a
commit 0c48c5712d
4 changed files with 108 additions and 63 deletions

View file

@ -0,0 +1,21 @@
// 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() {
assert_eq!(match [0u8, ..1024] {
_ => 42u,
}, 42u);
assert_eq!(match [0u8, ..1024] {
[1, _..] => 0u,
[0, _..] => 1u,
_ => 2u
}, 1u);
}