mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
24 lines
290 B
V
24 lines
290 B
V
struct Info {
|
|
name string
|
|
notes shared []string
|
|
maps map[int]int
|
|
info []SubInfo
|
|
}
|
|
|
|
struct SubInfo {
|
|
path string
|
|
files []string
|
|
}
|
|
|
|
fn test_autogen_free() {
|
|
info := &Info{}
|
|
info.free()
|
|
assert true
|
|
}
|
|
|
|
fn test_multiple_autogen_free() {
|
|
info := &Info{}
|
|
info.free()
|
|
assert true
|
|
}
|