mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
18 lines
532 B
Rust
18 lines
532 B
Rust
// run-rustfix
|
|
|
|
fn main() {
|
|
demo = 1; //~ ERROR cannot find value `demo` in this scope
|
|
dbg!(demo); //~ ERROR cannot find value `demo` in this scope
|
|
|
|
x = "x"; //~ ERROR cannot find value `x` in this scope
|
|
println!("x: {}", x); //~ ERROR cannot find value `x` in this scope
|
|
|
|
if x == "x" {
|
|
//~^ ERROR cannot find value `x` in this scope
|
|
println!("x is 1");
|
|
}
|
|
|
|
y = 1 + 2; //~ ERROR cannot find value `y` in this scope
|
|
println!("y: {}", y); //~ ERROR cannot find value `y` in this scope
|
|
}
|