]> git.lizzy.rs Git - rust.git/blob - tests/ui/rename.fixed
Auto merge of #5411 - dtolnay:hasher, r=flip1995
[rust.git] / tests / ui / rename.fixed
1 //! Test for Clippy lint renames.
2 // run-rustfix
3
4 #![allow(dead_code)]
5 // allow the new lint name here, to test if the new name works
6 #![allow(clippy::module_name_repetitions)]
7 #![allow(clippy::new_without_default)]
8 #![allow(clippy::redundant_static_lifetimes)]
9 // warn for the old lint name here, to test if the renaming worked
10 #![warn(clippy::cognitive_complexity)]
11
12 #[warn(clippy::module_name_repetitions)]
13 fn main() {}
14
15 #[warn(clippy::new_without_default)]
16 struct Foo;
17
18 #[warn(clippy::redundant_static_lifetimes)]
19 fn foo() {}