oberblastmeister

Resultados 1 preguntas formuladas por oberblastmeister

fn main() { let mut name = String::from("Charlie"); let x = &mut name; let y = x; // x has been moved say_hello(y); say_hello(y); // but y has not been