blob: df697ccb616ce728acdafed8fcf086c9f202b356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
fn gratitude() {
let for_you = false;
if not for_you {
//~^ ERROR unexpected `for_you` after identifier
println!("I couldn't");
}
}
fn qualification() {
let the_worst = true;
while not the_worst {
//~^ ERROR unexpected `the_worst` after identifier
println!("still pretty bad");
}
}
fn should_we() {
let not = true;
if not // lack of braces is [sic]
println!("Then when?");
//~^ ERROR expected `{`, found `;
//~| ERROR unexpected `println` after identifier
}
fn sleepy() {
let resource = not 2;
//~^ ERROR unexpected `2` after identifier
}
fn main() {
let be_smothered_out_before = true;
let young_souls = not be_smothered_out_before;
//~^ ERROR unexpected `be_smothered_out_before` after identifier
}
|