mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-17 10:18:20 +00:00
4eab691db6
Changes: - Add MainRecursion lint to clippy - Check for no-std setup fixes #333
11 lines
283 B
Text
11 lines
283 B
Text
error: You are recursing into main()
|
|
--> $DIR/std_main_recursion.rs:4:5
|
|
|
|
|
LL | main();
|
|
| ^^^^^^
|
|
|
|
|
= note: `-D clippy::main-recursion` implied by `-D warnings`
|
|
= help: Consider using another function for this recursion
|
|
|
|
error: aborting due to previous error
|
|
|