blob: c97a87aebce4154b8a92d8f1a4ffb4b65b0f5b5e [file] [log] [blame]
#[test]
fn test_borrowed_clone() {
let x = 5;
let y: &i32 = &x;
let z: &i32 = (&y).clone();
assert_eq!(*z, 5);
}
#[test]
fn test_clone_from() {
let a = box 5;
let mut b = box 10;
b.clone_from(&a);
assert_eq!(*b, 5);
}