v2 / vlib / v / debug / tests / struct_heap.vv
10 lines · 9 sloc · 84 bytes · 76ae040f71b92ca5e67e14a53dc016bb36e73de6
Raw
1@[heap]
2struct AStruct {
3 a int
4}
5
6fn main() {
7 st := AStruct{1}
8 $dbg;
9 dump(st)
10}
11