]> git.lizzy.rs Git - rust.git/blob - src/test/ui/did_you_mean/issue-46836-identifier-not-instead-of-negation.stderr
Auto merge of #106025 - matthiaskrgr:rollup-vz5rqah, r=matthiaskrgr
[rust.git] / src / test / ui / did_you_mean / issue-46836-identifier-not-instead-of-negation.stderr
1 error: unexpected `for_you` after identifier
2   --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:3:12
3    |
4 LL |     if not for_you {
5    |        ----^^^^^^^
6    |        |
7    |        help: use `!` to perform logical negation or bitwise not
8
9 error: unexpected `the_worst` after identifier
10   --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:11:15
11    |
12 LL |     while not the_worst {
13    |           ----^^^^^^^^^
14    |           |
15    |           help: use `!` to perform logical negation or bitwise not
16
17 error: unexpected `println` after identifier
18   --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:20:9
19    |
20 LL |     if not  // lack of braces is [sic]
21    |        ----- help: use `!` to perform logical negation or bitwise not
22 LL |         println!("Then when?");
23    |         ^^^^^^^
24
25 error: expected `{`, found `;`
26   --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:20:31
27    |
28 LL |         println!("Then when?");
29    |                               ^ expected `{`
30    |
31 note: the `if` expression is missing a block after this condition
32   --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:19:8
33    |
34 LL |       if not  // lack of braces is [sic]
35    |  ________^
36 LL | |         println!("Then when?");
37    | |______________________________^
38
39 error: unexpected `2` after identifier
40   --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:26:24
41    |
42 LL |     let resource = not 2;
43    |                    ----^
44    |                    |
45    |                    help: use `!` to perform bitwise not
46
47 error: unexpected `be_smothered_out_before` after identifier
48   --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:32:27
49    |
50 LL |     let young_souls = not be_smothered_out_before;
51    |                       ----^^^^^^^^^^^^^^^^^^^^^^^
52    |                       |
53    |                       help: use `!` to perform logical negation or bitwise not
54
55 error: aborting due to 6 previous errors
56