mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
map_test.v
This commit is contained in:
parent
c5a0b3734a
commit
388eb36ecb
21
vlib/builtin/map_test.v
Normal file
21
vlib/builtin/map_test.v
Normal file
@ -0,0 +1,21 @@
|
||||
struct A {
|
||||
m map_int
|
||||
}
|
||||
|
||||
fn (a mut A) set(key string, val int) {
|
||||
a.m[key] = val
|
||||
}
|
||||
|
||||
fn test_map() {
|
||||
mut m := map[string]int{}
|
||||
m['hi'] = 80
|
||||
assert m['hi'] == 80
|
||||
|
||||
mut a := A{
|
||||
m: new_map(1, sizeof(int))
|
||||
}
|
||||
a.m['one'] = 1
|
||||
a.set('two', 2)
|
||||
assert a.m['one'] == 1
|
||||
assert a.m['two'] == 2
|
||||
}
|
Loading…
Reference in New Issue
Block a user