1
Fork 0
rust/src/test/ui/lint/lint-uppercase-variables.stderr

53 lines
1.6 KiB
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
warning[E0170]: pattern binding `Foo` is named the same as one of the variants of the type `foo::Foo`
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:22:9
2018-08-08 14:28:26 +02:00
|
LL | Foo => {}
| ^^^ help: to match on the variant, qualify the path: `foo::Foo::Foo`
warning: unused variable: `Foo`
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:22:9
2018-08-08 14:28:26 +02:00
|
LL | Foo => {}
| ^^^ help: consider prefixing with an underscore: `_Foo`
2018-08-08 14:28:26 +02:00
|
note: lint level defined here
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:1:9
2018-08-08 14:28:26 +02:00
|
LL | #![warn(unused)]
| ^^^^^^
= note: `#[warn(unused_variables)]` implied by `#[warn(unused)]`
2018-08-08 14:28:26 +02:00
error: structure field `X` should have a snake case name
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:10:5
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | X: usize
| ^ help: convert the identifier to snake case: `x`
2018-08-08 14:28:26 +02:00
|
note: lint level defined here
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:3:9
2018-08-08 14:28:26 +02:00
|
LL | #![deny(non_snake_case)]
| ^^^^^^^^^^^^^^
error: variable `Xx` should have a snake case name
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:13:9
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | fn test(Xx: usize) {
| ^^ help: convert the identifier to snake case: `xx`
2018-08-08 14:28:26 +02:00
error: variable `Test` should have a snake case name
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:18:9
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | let Test: usize = 0;
| ^^^^ help: convert the identifier to snake case: `test`
2018-08-08 14:28:26 +02:00
error: variable `Foo` should have a snake case name
2018-12-25 08:56:47 -07:00
--> $DIR/lint-uppercase-variables.rs:22:9
2018-08-08 14:28:26 +02:00
|
LL | Foo => {}
| ^^^ help: convert the identifier to snake case: `foo`
2018-08-08 14:28:26 +02:00
error: aborting due to 4 previous errors
For more information about this error, try `rustc --explain E0170`.