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