2022-06-07 22:53:02 -05:00
|
|
|
fn a() {
|
|
|
|
if let x = 1 && i = 2 {}
|
|
|
|
//~^ ERROR cannot find value `i` in this scope
|
|
|
|
//~| ERROR mismatched types
|
2023-09-08 05:14:36 -05:00
|
|
|
//~| ERROR expected expression, found `let` statement
|
2022-06-07 22:53:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn b() {
|
|
|
|
if (i + j) = i {}
|
|
|
|
//~^ ERROR cannot find value `i` in this scope
|
|
|
|
//~| ERROR cannot find value `i` in this scope
|
|
|
|
//~| ERROR cannot find value `j` in this scope
|
|
|
|
}
|
|
|
|
|
|
|
|
fn c() {
|
|
|
|
if x[0] = 1 {}
|
|
|
|
//~^ ERROR cannot find value `x` in this scope
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|