mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
b545f1c3bb
compiletest UI tests do not fail when encountering panics and ICEs unless the `// run-pass` flag is used. (This was forgotten in https://github.com/rust-lang/rust-clippy/pull/3743)
22 lines
442 B
Rust
22 lines
442 B
Rust
// run-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() {}
|