]> git.lizzy.rs Git - rust.git/blob - tests/ui/rename.rs
Merge pull request #3918 from matthiaskrgr/typos
[rust.git] / tests / ui / rename.rs
1 #![allow(stutter)]
2 #![warn(clippy::cyclomatic_complexity)]
3
4 #[warn(clippy::stutter)]
5 fn main() {}
6
7 #[warn(clippy::new_without_default_derive)]
8 struct Foo;
9
10 impl Foo {
11     fn new() -> Self {
12         Foo
13     }
14 }