fn main() { let x = ~5u; let _ = x; println!("{}", *x); } prints "5". I am under the impression that x should have been moved. fn main() ...
確定! 回上一頁