v/vlib/v/parser/tests/struct_module_section.vv

19 lines
128 B
V
Raw Normal View History

struct S1 {
pub mut:
2022-04-15 17:34:15 +02:00
v u8
module:
i int
}
struct S2 {
module:
j int
mut:
2022-04-15 17:34:15 +02:00
v u8
}
mut s := S1{}
s.i++
mut s2 := S2{}
s2.j++