rust-clippy/tests/ui/crashes/ice-2499.rs

27 lines
546 B
Rust
Raw Normal View History

2018-07-30 09:33:44 +00:00
#![allow(dead_code, clippy::char_lit_as_u8, clippy::needless_bool)]
/// Should not trigger an ICE in `SpanlessHash` / `consts::constant`
///
/// Issue: https://github.com/rust-lang/rust-clippy/issues/2499
fn f(s: &[u8]) -> bool {
let t = s[0] as char;
match t {
2018-12-09 22:26:16 +00:00
'E' | 'W' => {},
'T' => {
if s[0..4] != ['0' as u8; 4] {
return false;
} else {
return true;
}
},
_ => {
return false;
2018-12-09 22:26:16 +00:00
},
}
true
}
fn main() {}