mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
91a491e68e
Currently the cognitive complexity lint spans the entire function body making it really difficult to read and refactor the code in editors. To fix this we reduce the lint span to the function name.
12 lines
324 B
Plaintext
12 lines
324 B
Plaintext
error: the function has a cognitive complexity of (3/0)
|
|
--> $DIR/cognitive_complexity_attr_used.rs:9:4
|
|
|
|
|
LL | fn kaboom() {
|
|
| ^^^^^^
|
|
|
|
|
= note: `-D clippy::cognitive-complexity` implied by `-D warnings`
|
|
= help: you could split it up into multiple smaller functions
|
|
|
|
error: aborting due to previous error
|
|
|