]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/non_expressive_names.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / non_expressive_names.stderr
index 63fc607b802a0271efee2b433aea7fc34ce3a4a6..8729db18dffffc405aea0e6d119a8c9229fe109b 100644 (file)
 error: binding's name is too similar to existing binding
-  --> $DIR/non_expressive_names.rs:18:9
+  --> $DIR/non_expressive_names.rs:24:9
    |
-18 |     let bpple: i32;
+LL |     let bpple: i32;
    |         ^^^^^
    |
-note: lint level defined here
-  --> $DIR/non_expressive_names.rs:3:16
-   |
-3  | #![deny(clippy,similar_names)]
-   |                ^^^^^^^^^^^^^
+   = note: `-D clippy::similar-names` implied by `-D warnings`
 note: existing binding defined here
-  --> $DIR/non_expressive_names.rs:16:9
+  --> $DIR/non_expressive_names.rs:22:9
    |
-16 |     let apple: i32;
+LL |     let apple: i32;
    |         ^^^^^
 help: separate the discriminating character by an underscore like: `b_pple`
-  --> $DIR/non_expressive_names.rs:18:9
+  --> $DIR/non_expressive_names.rs:24:9
    |
-18 |     let bpple: i32;
+LL |     let bpple: i32;
    |         ^^^^^
 
 error: binding's name is too similar to existing binding
-  --> $DIR/non_expressive_names.rs:20:9
+  --> $DIR/non_expressive_names.rs:26:9
    |
-20 |     let cpple: i32;
+LL |     let cpple: i32;
    |         ^^^^^
    |
 note: existing binding defined here
-  --> $DIR/non_expressive_names.rs:16:9
+  --> $DIR/non_expressive_names.rs:22:9
    |
-16 |     let apple: i32;
+LL |     let apple: i32;
    |         ^^^^^
 help: separate the discriminating character by an underscore like: `c_pple`
-  --> $DIR/non_expressive_names.rs:20:9
+  --> $DIR/non_expressive_names.rs:26:9
    |
-20 |     let cpple: i32;
+LL |     let cpple: i32;
    |         ^^^^^
 
 error: binding's name is too similar to existing binding
-  --> $DIR/non_expressive_names.rs:45:9
+  --> $DIR/non_expressive_names.rs:50:9
    |
-45 |     let bluby: i32;
+LL |     let bluby: i32;
    |         ^^^^^
    |
 note: existing binding defined here
-  --> $DIR/non_expressive_names.rs:44:9
+  --> $DIR/non_expressive_names.rs:49:9
    |
-44 |     let blubx: i32;
+LL |     let blubx: i32;
    |         ^^^^^
 help: separate the discriminating character by an underscore like: `blub_y`
-  --> $DIR/non_expressive_names.rs:45:9
+  --> $DIR/non_expressive_names.rs:50:9
    |
-45 |     let bluby: i32;
+LL |     let bluby: i32;
    |         ^^^^^
 
 error: binding's name is too similar to existing binding
-  --> $DIR/non_expressive_names.rs:50:9
+  --> $DIR/non_expressive_names.rs:54:9
    |
-50 |     let coke: i32;
+LL |     let coke: i32;
    |         ^^^^
    |
 note: existing binding defined here
-  --> $DIR/non_expressive_names.rs:48:9
+  --> $DIR/non_expressive_names.rs:52:9
    |
-48 |     let cake: i32;
+LL |     let cake: i32;
    |         ^^^^
 
 error: binding's name is too similar to existing binding
-  --> $DIR/non_expressive_names.rs:68:9
+  --> $DIR/non_expressive_names.rs:72:9
    |
-68 |     let xyzeabc: i32;
+LL |     let xyzeabc: i32;
    |         ^^^^^^^
    |
 note: existing binding defined here
-  --> $DIR/non_expressive_names.rs:66:9
+  --> $DIR/non_expressive_names.rs:70:9
    |
-66 |     let xyz1abc: i32;
+LL |     let xyz1abc: i32;
    |         ^^^^^^^
 
 error: binding's name is too similar to existing binding
-  --> $DIR/non_expressive_names.rs:72:9
+  --> $DIR/non_expressive_names.rs:76:9
    |
-72 |     let parsee: i32;
+LL |     let parsee: i32;
    |         ^^^^^^
    |
 note: existing binding defined here
-  --> $DIR/non_expressive_names.rs:70:9
+  --> $DIR/non_expressive_names.rs:74:9
    |
-70 |     let parser: i32;
+LL |     let parser: i32;
    |         ^^^^^^
 help: separate the discriminating character by an underscore like: `parse_e`
-  --> $DIR/non_expressive_names.rs:72:9
+  --> $DIR/non_expressive_names.rs:76:9
    |
-72 |     let parsee: i32;
+LL |     let parsee: i32;
    |         ^^^^^^
 
 error: binding's name is too similar to existing binding
-  --> $DIR/non_expressive_names.rs:86:16
+  --> $DIR/non_expressive_names.rs:90:16
    |
-86 |         bpple: sprang } = unimplemented!();
+LL |         bpple: sprang,
    |                ^^^^^^
    |
 note: existing binding defined here
-  --> $DIR/non_expressive_names.rs:85:22
+  --> $DIR/non_expressive_names.rs:89:16
    |
-85 |     let Foo { apple: spring,
-   |                      ^^^^^^
+LL |         apple: spring,
+   |                ^^^^^^
 
 error: 5th binding whose name is just one char
-   --> $DIR/non_expressive_names.rs:120:17
-    |
-120 |             let e: i32;
-    |                 ^
-    |
-    = note: #[deny(many_single_char_names)] implied by #[deny(clippy)]
-note: lint level defined here
-   --> $DIR/non_expressive_names.rs:3:9
-    |
-3   | #![deny(clippy,similar_names)]
-    |         ^^^^^^
+  --> $DIR/non_expressive_names.rs:125:17
+   |
+LL |             let e: i32;
+   |                 ^
+   |
+   = note: `-D clippy::many-single-char-names` implied by `-D warnings`
 
 error: 5th binding whose name is just one char
-   --> $DIR/non_expressive_names.rs:123:17
-    |
-123 |             let e: i32;
-    |                 ^
-    |
-    = note: #[deny(many_single_char_names)] implied by #[deny(clippy)]
+  --> $DIR/non_expressive_names.rs:128:17
+   |
+LL |             let e: i32;
+   |                 ^
 
 error: 6th binding whose name is just one char
-   --> $DIR/non_expressive_names.rs:124:17
-    |
-124 |             let f: i32;
-    |                 ^
-    |
-    = note: #[deny(many_single_char_names)] implied by #[deny(clippy)]
+  --> $DIR/non_expressive_names.rs:129:17
+   |
+LL |             let f: i32;
+   |                 ^
 
 error: 5th binding whose name is just one char
-   --> $DIR/non_expressive_names.rs:129:13
-    |
-129 |             e => panic!(),
-    |             ^
-    |
-    = note: #[deny(many_single_char_names)] implied by #[deny(clippy)]
-
-error: aborting due to 11 previous errors
+  --> $DIR/non_expressive_names.rs:133:13
+   |
+LL |             e => panic!(),
+   |             ^
+
+error: consider choosing a more descriptive name
+  --> $DIR/non_expressive_names.rs:143:9
+   |
+LL |     let _1 = 1; //~ERROR Consider a more descriptive name
+   |         ^^
+   |
+   = note: `-D clippy::just-underscores-and-digits` implied by `-D warnings`
+
+error: consider choosing a more descriptive name
+  --> $DIR/non_expressive_names.rs:144:9
+   |
+LL |     let ____1 = 1; //~ERROR Consider a more descriptive name
+   |         ^^^^^
+
+error: consider choosing a more descriptive name
+  --> $DIR/non_expressive_names.rs:145:9
+   |
+LL |     let __1___2 = 12; //~ERROR Consider a more descriptive name
+   |         ^^^^^^^
+
+error: consider choosing a more descriptive name
+  --> $DIR/non_expressive_names.rs:165:13
+   |
+LL |         let _1 = 1;
+   |             ^^
+
+error: consider choosing a more descriptive name
+  --> $DIR/non_expressive_names.rs:166:13
+   |
+LL |         let ____1 = 1;
+   |             ^^^^^
+
+error: consider choosing a more descriptive name
+  --> $DIR/non_expressive_names.rs:167:13
+   |
+LL |         let __1___2 = 12;
+   |             ^^^^^^^
+
+error: aborting due to 17 previous errors