about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/issue-825.rs
blob: 9bbb86e4c65af4d62945d8a5cbfb6a75cab59baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//@ check-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() {}