]> git.lizzy.rs Git - rust.git/blob - src/test/ui/span/issue-24690.stderr
trans-scheduler: Let main thread take over for other worker.
[rust.git] / src / test / ui / span / issue-24690.stderr
1 error: variable `theTwo` should have a snake case name such as `the_two`
2   --> $DIR/issue-24690.rs:19:9
3    |
4 19 |     let theTwo = 2;
5    |         ^^^^^^
6    |
7 note: lint level defined here
8   --> $DIR/issue-24690.rs:16:9
9    |
10 16 | #![deny(warnings)]
11    |         ^^^^^^^^
12    = note: #[deny(non_snake_case)] implied by #[deny(warnings)]
13
14 error: variable `theOtherTwo` should have a snake case name such as `the_other_two`
15   --> $DIR/issue-24690.rs:20:9
16    |
17 20 |     let theOtherTwo = 2;
18    |         ^^^^^^^^^^^
19
20 error: unused variable: `theOtherTwo`
21   --> $DIR/issue-24690.rs:20:9
22    |
23 20 |     let theOtherTwo = 2;
24    |         ^^^^^^^^^^^
25    |
26 note: lint level defined here
27   --> $DIR/issue-24690.rs:16:9
28    |
29 16 | #![deny(warnings)]
30    |         ^^^^^^^^
31    = note: #[deny(unused_variables)] implied by #[deny(warnings)]
32
33 error: aborting due to 3 previous errors
34