mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
12 lines
360 B
Text
12 lines
360 B
Text
error: recursing into entrypoint `main`
|
|
--> $DIR/std_main_recursion.rs:5:5
|
|
|
|
|
LL | main();
|
|
| ^^^^
|
|
|
|
|
= help: consider using another function for this recursion
|
|
= note: `-D clippy::main-recursion` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::main_recursion)]`
|
|
|
|
error: aborting due to previous error
|
|
|