@@ -4,7 +4,7 @@ error: function `CamelCase` should have a snake case name such as `camel_case`
4
4
14 | fn CamelCase() {}
5
5
| ^^^^^^^^^^^^^^^^^
6
6
|
7
- = note: #[deny(bad_style )] implies #[deny(non_snake_case )]
7
+ = note: #[deny(non_snake_case )] implied by #[deny(bad_style )]
8
8
note: lint level defined here
9
9
--> $DIR/lint-group-style.rs:11:9
10
10
|
@@ -17,7 +17,7 @@ error: function `CamelCase` should have a snake case name such as `camel_case`
17
17
22 | fn CamelCase() {}
18
18
| ^^^^^^^^^^^^^^^^^
19
19
|
20
- = note: #[forbid(bad_style )] implies #[forbid(non_snake_case )]
20
+ = note: #[forbid(non_snake_case )] implied by #[forbid(bad_style )]
21
21
note: lint level defined here
22
22
--> $DIR/lint-group-style.rs:20:14
23
23
|
@@ -30,7 +30,7 @@ error: static variable `bad` should have an upper case name such as `BAD`
30
30
24 | static bad: isize = 1;
31
31
| ^^^^^^^^^^^^^^^^^^^^^^
32
32
|
33
- = note: #[forbid(bad_style )] implies #[forbid(non_upper_case_globals )]
33
+ = note: #[forbid(non_upper_case_globals )] implied by #[forbid(bad_style )]
34
34
note: lint level defined here
35
35
--> $DIR/lint-group-style.rs:20:14
36
36
|
@@ -43,7 +43,7 @@ warning: function `CamelCase` should have a snake case name such as `camel_case`
43
43
30 | fn CamelCase() {}
44
44
| ^^^^^^^^^^^^^^^^^
45
45
|
46
- = note: #[warn(bad_style )] implies #[warn(non_snake_case )]
46
+ = note: #[warn(non_snake_case )] implied by #[warn(bad_style )]
47
47
note: lint level defined here
48
48
--> $DIR/lint-group-style.rs:28:17
49
49
|
@@ -56,7 +56,7 @@ warning: type `snake_case` should have a camel case name such as `SnakeCase`
56
56
32 | struct snake_case;
57
57
| ^^^^^^^^^^^^^^^^^^
58
58
|
59
- = note: #[warn(bad_style )] implies #[warn(non_camel_case_types )]
59
+ = note: #[warn(non_camel_case_types )] implied by #[warn(bad_style )]
60
60
note: lint level defined here
61
61
--> $DIR/lint-group-style.rs:28:17
62
62
|
0 commit comments