rust/tests/ui/rename.rs

15 lines
210 B
Rust

#![allow(stutter)]
#![warn(clippy::cyclomatic_complexity)]
#[warn(clippy::stutter)]
fn main() {}
#[warn(clippy::new_without_default_derive)]
struct Foo;
impl Foo {
fn new() -> Self {
Foo
}
}