2019-06-14 07:54:34 +00:00
|
|
|
//! Test for Clippy lint renames.
|
|
|
|
|
|
|
|
// allow the new lint name here, to test if the new name works
|
|
|
|
#![allow(clippy::module_name_repetitions)]
|
|
|
|
#![allow(clippy::new_without_default)]
|
|
|
|
#![allow(clippy::cognitive_complexity)]
|
|
|
|
#![allow(clippy::redundant_static_lifetimes)]
|
|
|
|
// warn for the old lint name here, to test if the renaming worked
|
2019-02-23 01:19:50 +00:00
|
|
|
#![warn(clippy::cyclomatic_complexity)]
|
2018-12-17 12:59:09 +00:00
|
|
|
|
|
|
|
#[warn(clippy::stutter)]
|
|
|
|
fn main() {}
|
2018-12-17 23:25:49 +00:00
|
|
|
|
|
|
|
#[warn(clippy::new_without_default_derive)]
|
|
|
|
struct Foo;
|
|
|
|
|
2019-06-13 21:54:05 +00:00
|
|
|
#[warn(clippy::const_static_lifetime)]
|
|
|
|
static Bar: &'static str = "baz";
|
|
|
|
|
2018-12-17 23:25:49 +00:00
|
|
|
impl Foo {
|
|
|
|
fn new() -> Self {
|
|
|
|
Foo
|
|
|
|
}
|
|
|
|
}
|