1error: unexpected `for_you` after identifier
2  --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:3:12
3   |
4LL |     if not for_you {
5   |        ----^^^^^^^
6   |        |
7   |        help: use `!` to perform logical negation
8
9error: unexpected `the_worst` after identifier
10  --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:11:15
11   |
12LL |     while not the_worst {
13   |           ----^^^^^^^^^
14   |           |
15   |           help: use `!` to perform logical negation
16
17error: unexpected `println` after identifier
18  --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:20:9
19   |
20LL |     if not  // lack of braces is [sic]
21   |        ----- help: use `!` to perform logical negation
22LL |         println!("Then when?");
23   |         ^^^^^^^
24
25error: expected `{`, found `;`
26  --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:20:31
27   |
28LL |     if not  // lack of braces is [sic]
29   |     -- this `if` expression has a condition, but no block
30LL |         println!("Then when?");
31   |                               ^
32   |                               |
33   |                               expected `{`
34   |                               help: try placing this code inside a block: `{ ; }`
35
36error: unexpected `2` after identifier
37  --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:26:24
38   |
39LL |     let resource = not 2;
40   |                    ----^
41   |                    |
42   |                    help: use `!` to perform logical negation
43
44error: unexpected `be_smothered_out_before` after identifier
45  --> $DIR/issue-46836-identifier-not-instead-of-negation.rs:32:27
46   |
47LL |     let young_souls = not be_smothered_out_before;
48   |                       ----^^^^^^^^^^^^^^^^^^^^^^^
49   |                       |
50   |                       help: use `!` to perform logical negation
51
52error: aborting due to 6 previous errors
53
54