rust/library/core/tests/clone.rs

16 lines
251 B
Rust
Raw Normal View History

#[test]
fn test_borrowed_clone() {
2015-01-25 22:05:03 +01:00
let x = 5;
2015-10-15 21:07:20 +02:00
let y: &i32 = &x;
let z: &i32 = (&y).clone();
assert_eq!(*z, 5);
}
#[test]
fn test_clone_from() {
2015-01-25 22:05:03 +01:00
let a = box 5;
let mut b = box 10;
b.clone_from(&a);
assert_eq!(*b, 5);
}