rust/library/core/tests/clone.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
298 B
Rust
Raw Normal View History

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