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)
27 lines
623 B
Rust
27 lines
623 B
Rust
// run-pass
|
|
|
|
#![allow(warnings)]
|
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/825
|
|
|
|
// this should compile in a reasonable amount of time
|
|
fn rust_type_id(name: &str) {
|
|
if "bool" == &name[..]
|
|
|| "uint" == &name[..]
|
|
|| "u8" == &name[..]
|
|
|| "u16" == &name[..]
|
|
|| "u32" == &name[..]
|
|
|| "f32" == &name[..]
|
|
|| "f64" == &name[..]
|
|
|| "i8" == &name[..]
|
|
|| "i16" == &name[..]
|
|
|| "i32" == &name[..]
|
|
|| "i64" == &name[..]
|
|
|| "Self" == &name[..]
|
|
|| "str" == &name[..]
|
|
{
|
|
unreachable!();
|
|
}
|
|
}
|
|
|
|
fn main() {}
|