@@ -4,7 +4,7 @@ error: function `CamelCase` should have a snake case name such as `camel_case`
4414 | fn CamelCase() {}
55 | ^^^^^^^^^^^^^^^^^
66 |
7- = note: #[deny(bad_style )] implies #[deny(non_snake_case )]
7+ = note: #[deny(non_snake_case )] implied by #[deny(bad_style )]
88note: lint level defined here
99 --> $DIR/lint-group-style.rs:11:9
1010 |
@@ -17,7 +17,7 @@ error: function `CamelCase` should have a snake case name such as `camel_case`
171722 | fn CamelCase() {}
1818 | ^^^^^^^^^^^^^^^^^
1919 |
20- = note: #[forbid(bad_style )] implies #[forbid(non_snake_case )]
20+ = note: #[forbid(non_snake_case )] implied by #[forbid(bad_style )]
2121note: lint level defined here
2222 --> $DIR/lint-group-style.rs:20:14
2323 |
@@ -30,7 +30,7 @@ error: static variable `bad` should have an upper case name such as `BAD`
303024 | static bad: isize = 1;
3131 | ^^^^^^^^^^^^^^^^^^^^^^
3232 |
33- = note: #[forbid(bad_style )] implies #[forbid(non_upper_case_globals )]
33+ = note: #[forbid(non_upper_case_globals )] implied by #[forbid(bad_style )]
3434note: lint level defined here
3535 --> $DIR/lint-group-style.rs:20:14
3636 |
@@ -43,7 +43,7 @@ warning: function `CamelCase` should have a snake case name such as `camel_case`
434330 | fn CamelCase() {}
4444 | ^^^^^^^^^^^^^^^^^
4545 |
46- = note: #[warn(bad_style )] implies #[warn(non_snake_case )]
46+ = note: #[warn(non_snake_case )] implied by #[warn(bad_style )]
4747note: lint level defined here
4848 --> $DIR/lint-group-style.rs:28:17
4949 |
@@ -56,7 +56,7 @@ warning: type `snake_case` should have a camel case name such as `SnakeCase`
565632 | struct snake_case;
5757 | ^^^^^^^^^^^^^^^^^^
5858 |
59- = note: #[warn(bad_style )] implies #[warn(non_camel_case_types )]
59+ = note: #[warn(non_camel_case_types )] implied by #[warn(bad_style )]
6060note: lint level defined here
6161 --> $DIR/lint-group-style.rs:28:17
6262 |
0 commit comments