mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 05:03:21 +00:00
Add regression test for #825
This commit is contained in:
parent
6b0eb10769
commit
a504ef488a
1 changed files with 25 additions and 0 deletions
25
tests/issue-825.rs
Normal file
25
tests/issue-825.rs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
#![feature(plugin)]
|
||||||
|
#![plugin(clippy)]
|
||||||
|
|
||||||
|
#![allow(warnings)]
|
||||||
|
|
||||||
|
// this should compile in a reasonable amount of time
|
||||||
|
fn rust_type_id(name: String) {
|
||||||
|
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() {}
|
Loading…
Reference in a new issue