blob: d895a2e16b537c9b188241957b4df7d4abc3c45b [file] [log] [blame]
fn test() {
let mut v: isize;
v = v + 1; //~ ERROR use of possibly uninitialized variable: `v`
v.clone();
}
fn main() {
}