]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/borrowck-init-op-equal.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / borrowck / borrowck-init-op-equal.rs
CommitLineData
223e47cc 1fn test() {
1a4d82fc 2 let v: isize;
064997fb 3 v += 1; //~ ERROR E0381
1a4d82fc 4 v.clone();
223e47cc
LB
5}
6
7fn main() {
8}