mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
15 lines
437 B
Text
15 lines
437 B
Text
error: constructor `should_spawn` has the same name as the type
|
|
--> tests/ui/self_named_constructors.rs:7:5
|
|
|
|
|
LL | / pub fn should_spawn() -> ShouldSpawn {
|
|
LL | |
|
|
LL | |
|
|
LL | | ShouldSpawn
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::self-named-constructors` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::self_named_constructors)]`
|
|
|
|
error: aborting due to 1 previous error
|
|
|