blob: 45265173419b71b70da3c69c080c547731c6afe1 [file] [log] [blame]
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
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
}