2019-02-12 17:35:38 +00:00
|
|
|
warning: type `snake_case` should have an upper camel case name
|
2019-01-04 20:59:07 +00:00
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:22:16
|
2018-12-17 03:21:47 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | struct snake_case;
|
2019-02-12 17:35:38 +00:00
|
|
|
| ^^^^^^^^^^ help: convert the identifier to upper camel case: `SnakeCase`
|
2018-12-17 03:21:47 +00:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-29 07:52:25 +00:00
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:18:17
|
2018-12-17 03:21:47 +00:00
|
|
|
|
|
|
|
|
LL | #![warn(nonstandard_style)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2019-07-16 20:17:38 +00:00
|
|
|
= note: `#[warn(non_camel_case_types)]` implied by `#[warn(nonstandard_style)]`
|
2018-12-17 03:21:47 +00:00
|
|
|
|
2019-01-04 15:19:52 +00:00
|
|
|
error: function `CamelCase` should have a snake case name
|
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:4:4
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn CamelCase() {}
|
2019-01-04 15:19:52 +00:00
|
|
|
| ^^^^^^^^^ help: convert the identifier to snake case: `camel_case`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-29 07:52:25 +00:00
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:1:9
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2018-02-24 23:59:34 +00:00
|
|
|
LL | #![deny(nonstandard_style)]
|
2018-02-20 21:38:46 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2019-07-16 20:17:38 +00:00
|
|
|
= note: `#[deny(non_snake_case)]` implied by `#[deny(nonstandard_style)]`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
2019-01-04 15:19:52 +00:00
|
|
|
error: function `CamelCase` should have a snake case name
|
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:12:12
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn CamelCase() {}
|
2019-01-04 15:19:52 +00:00
|
|
|
| ^^^^^^^^^ help: convert the identifier to snake case: `camel_case`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-29 07:52:25 +00:00
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:10:14
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2018-02-24 23:59:34 +00:00
|
|
|
LL | #[forbid(nonstandard_style)]
|
2018-02-20 21:38:46 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^
|
2019-07-16 20:17:38 +00:00
|
|
|
= note: `#[forbid(non_snake_case)]` implied by `#[forbid(nonstandard_style)]`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
2019-01-04 20:00:15 +00:00
|
|
|
error: static variable `bad` should have an upper case name
|
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:14:16
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | static bad: isize = 1;
|
2019-01-04 20:00:15 +00:00
|
|
|
| ^^^ help: convert the identifier to upper case: `BAD`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2019-07-16 20:17:38 +00:00
|
|
|
= note: `#[forbid(non_upper_case_globals)]` implied by `#[forbid(nonstandard_style)]`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
2019-01-04 15:19:52 +00:00
|
|
|
warning: function `CamelCase` should have a snake case name
|
|
|
|
--> $DIR/lint-group-nonstandard-style.rs:20:12
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn CamelCase() {}
|
2019-01-04 15:19:52 +00:00
|
|
|
| ^^^^^^^^^ help: convert the identifier to snake case: `camel_case`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
|
2019-07-16 20:17:38 +00:00
|
|
|
= note: `#[warn(non_snake_case)]` implied by `#[warn(nonstandard_style)]`
|
2018-02-20 21:28:51 +00:00
|
|
|
|
2020-03-11 15:30:09 +00:00
|
|
|
error: aborting due to 3 previous errors; 2 warnings emitted
|
2018-02-20 21:28:51 +00:00
|
|
|
|