2025-07-13 16:56:31 -04:00
|
|
|
// https://github.com/rust-lang/rust/issues/77218
|
2021-05-06 19:09:35 -07:00
|
|
|
//@ run-rustfix
|
|
|
|
|
fn main() {
|
|
|
|
|
let value = [7u8];
|
2021-11-03 02:50:57 -04:00
|
|
|
while let Some(0) = value.get(0) {} //~ ERROR invalid left-hand side of assignment
|
2021-05-06 19:09:35 -07:00
|
|
|
}
|