2018-05-12 06:41:03 -05:00
|
|
|
#![allow(dead_code, unused_variables)]
|
|
|
|
|
|
|
|
/// Should not trigger an ICE in `SpanlessHash` / `consts::constant`
|
|
|
|
///
|
2018-11-21 21:40:09 -06:00
|
|
|
/// Issue: https://github.com/rust-lang/rust-clippy/issues/2594
|
2018-05-12 06:41:03 -05:00
|
|
|
fn spanless_hash_ice() {
|
|
|
|
let txt = "something";
|
|
|
|
let empty_header: [u8; 1] = [1; 1];
|
|
|
|
|
|
|
|
match txt {
|
|
|
|
"something" => {
|
|
|
|
let mut headers = [empty_header; 1];
|
2018-12-09 16:26:16 -06:00
|
|
|
},
|
2018-05-12 06:41:03 -05:00
|
|
|
"" => (),
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|