forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.rs
60 lines (52 loc) · 1.53 KB
/
test.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#![warn(clippy::too_many_lines)]
#![allow(clippy::let_unit_value)]
// This function should be considered one line.
fn many_comments_but_one_line_of_code() {
/* println!("This is good."); */
// println!("This is good.");
/* */ // println!("This is good.");
/* */ // println!("This is good.");
/* */ // println!("This is good.");
/* */ // println!("This is good.");
/* println!("This is good.");
println!("This is good.");
println!("This is good."); */
println!("This is good.");
}
// This should be considered two and a fail.
fn too_many_lines() {
println!("This is bad.");
println!("This is bad.");
}
// This should only fail once (#7517).
async fn async_too_many_lines() {
println!("This is bad.");
println!("This is bad.");
}
// This should fail only once, without failing on the closure.
fn closure_too_many_lines() {
let _ = {
println!("This is bad.");
println!("This is bad.");
};
}
// This should be considered one line.
#[rustfmt::skip]
fn comment_starts_after_code() {
let _ = 5; /* closing comment. */ /*
this line shouldn't be counted theoretically.
*/
}
// This should be considered one line.
fn comment_after_code() {
let _ = 5; /* this line should get counted once. */
}
// This should fail since it is technically two lines.
#[rustfmt::skip]
fn comment_before_code() {
let _ = "test";
/* This comment extends to the front of
the code but this line should still count. */ let _ = 5;
}
// This should be considered one line.
fn main() {}