fn main(){ let x = String::from("E2L") ; // x est propriétaire de "E2L". let y = x ; // Attention ! La propriété de x passe à y println ! ("{}", x) ; // Erreur ! x n'est plus disponible }