blob: d4d9e74cc193368da1026271020eb64ba3e5e069 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//@ check-pass
#![allow(dead_code, unused_variables)]
/// Should not trigger an ICE in `SpanlessHash` / `consts::constant`
///
/// Issue: https://github.com/rust-lang/rust-clippy/issues/2594
fn spanless_hash_ice() {
let txt = "something";
let empty_header: [u8; 1] = [1; 1];
match txt {
"something" => {
let mut headers = [empty_header; 1];
},
"" => (),
_ => (),
}
}
fn main() {}
|