mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
189 B
Rust
12 lines
189 B
Rust
// run-pass
|
|
|
|
pub fn main() {
|
|
let mut i: Box<_> = Box::new(1);
|
|
// Should be a copy
|
|
let mut j = i.clone();
|
|
*i = 2;
|
|
*j = 3;
|
|
assert_eq!(*i, 2);
|
|
assert_eq!(*j, 3);
|
|
}
|