]> git.proxmox.com Git - rustc.git/blob - tests/ui/typeck/issue-93486.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / typeck / issue-93486.rs
1 fn main() {
2 while let 1 = 1 {
3 vec![].last_mut().unwrap() = 3_u8;
4 //~^ ERROR invalid left-hand side of assignment
5 }
6 }