]> git.lizzy.rs Git - rust.git/blob - tests/ui-toml/functions_maxlines/test.rs
6ee75e4dbc1798868543272c8616e288de1df44d
[rust.git] / tests / ui-toml / functions_maxlines / test.rs
1 #![warn(clippy::too_many_lines)]
2
3
4 // This function should be considered one line.
5 fn many_comments_but_one_line_of_code() {
6     /* println!("This is good."); */
7     // println!("This is good.");
8     /* */ // println!("This is good.");
9     /* */ // println!("This is good.");
10     /* */ // println!("This is good.");
11     /* */ // println!("This is good.");
12     /* println!("This is good.");
13     println!("This is good.");
14     println!("This is good."); */
15     println!("This is good.");
16 }
17
18 // This should be considered two and a fail.
19 fn too_many_lines() {
20     println!("This is bad.");
21     println!("This is bad.");
22 }
23
24 // This should be considered one line.
25 fn comment_starts_after_code() {
26     let _ = 5; /* closing comment. */ /*
27     this line shouldn't be counted theoretically.
28     */
29 }
30
31 // This should be considered one line.
32 fn comment_after_code() {
33     let _ = 5; /* this line should get counted once. */
34 }
35
36 // This should fail since it is technically two lines.
37 fn comment_before_code() {
38     let _ = "test";
39     /* This comment extends to the front of
40     teh code but this line should still count. */ let _ = 5;
41 }
42
43 // This should be considered one line.
44 fn main() {}