rust/tests/ui/rename.rs
2019-01-08 21:46:39 +01:00

13 lines
170 B
Rust

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