#![allow(unused_variables)] fn main() { let mut s: String = String::new(); "hello".clone_into(&mut s); let mut v: Vec = Vec::new(); [1, 2][..].clone_into(&mut v); }