1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/compiler/tests/mut_test.v
Alexander Medvednikov 3c6a11eb0b fix mut_test.v
2019-08-11 22:45:21 +03:00

21 lines
260 B
V

fn foo(b int, a mut []int) {
a[0] = 7
a << 4
}
// TODO
fn test_mut() {
mut numbers := [1,2,3]
foo(7, mut numbers)
//assert a.len == 4
assert numbers[0] == 7
//assert a[3] == 4
n := 1
mut b := &n
*b = 10
//mut b := mut a
//b = 10
}