v2 / vlib / v / gen / c / testdata / heap_struct_init.vv
9 lines · 8 sloc · 97 bytes · 1b991893b6d89e69e36970f5f1c15984f6526e89
Raw
1struct Foo {
2 x string
3 y string
4}
5
6fn main() {
7 foo := &Foo{'x', 'y'}
8 println(foo.x + foo.y)
9}
10