blob: 6d40f74a0d81c34adc38a3bb65f0564b80cebe51 [file] [log] [blame]
//@ run-rustfix
fn main() {
let demo = 1; //~ ERROR cannot find value `demo` in this scope
dbg!(demo); //~ ERROR cannot find value `demo` in this scope
let x = "x"; //~ ERROR cannot find value `x` in this scope
println!("x: {}", x); //~ ERROR cannot find value `x` in this scope
let some_variable = 6; //~ ERROR cannot find value `let_some_variable` in this scope
println!("some_variable: {}", some_variable); //~ ERROR cannot find value `some_variable` in this scope
let other_variable = 6; //~ ERROR cannot find value `letother_variable` in this scope
println!("other_variable: {}", other_variable); //~ ERROR cannot find value `other_variable` in this scope
if x == "x" {
//~^ ERROR cannot find value `x` in this scope
println!("x is 1");
}
let y = 1 + 2; //~ ERROR cannot find value `y` in this scope
println!("y: {}", y); //~ ERROR cannot find value `y` in this scope
}