mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
9 lines
136 B
V
9 lines
136 B
V
fn test_clone() {
|
|
a := [byte(0), 1, 2]
|
|
b := a.clone()
|
|
assert b.len == 3
|
|
assert b[0] == 0
|
|
assert b[1] == 1
|
|
assert b[2] == 2
|
|
}
|