rust/tests/ui-toml/functions_maxlines/test.stderr

24 lines
582 B
Text
Raw Normal View History

error: this function has too many lines (2/1)
2019-02-01 19:19:55 +01:00
--> $DIR/test.rs:18:1
|
LL | / fn too_many_lines() {
LL | | println!("This is bad.");
LL | | println!("This is bad.");
LL | | }
| |_^
|
= note: `-D clippy::too-many-lines` implied by `-D warnings`
error: this function has too many lines (2/1)
2019-02-01 19:19:55 +01:00
--> $DIR/test.rs:38:1
|
LL | / fn comment_before_code() {
LL | | let _ = "test";
LL | | /* This comment extends to the front of
2019-04-04 11:15:30 +02:00
LL | | the code but this line should still count. */ let _ = 5;
LL | | }
| |_^
error: aborting due to 2 previous errors