mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
bring back map.str()
This commit is contained in:
6
compiler/tests/mut_test.v
Normal file
6
compiler/tests/mut_test.v
Normal file
@@ -0,0 +1,6 @@
|
||||
fn test_mut() {
|
||||
a := 1
|
||||
mut b := &a
|
||||
*b = 10
|
||||
println(a)
|
||||
}
|
||||
Reference in New Issue
Block a user